/* * Copyright (c) 2021-2022, Linus Groh * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace JS { class AggregateError : public Error { JS_OBJECT(AggregateError, Error); public: static NonnullGCPtr create(Realm&); virtual ~AggregateError() override = default; private: explicit AggregateError(Object& prototype); }; }