ladybird/Userland/Libraries/LibJS/Runtime/AggregateError.h
2021-06-23 13:55:43 +01:00

23 lines
417 B
C++

/*
* Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibJS/Runtime/Object.h>
namespace JS {
class AggregateError : public Object {
JS_OBJECT(AggregateError, Object);
public:
static AggregateError* create(GlobalObject&);
explicit AggregateError(Object& prototype);
virtual ~AggregateError() override = default;
};
}