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