ladybird/Userland/Libraries/LibJS/Runtime/AggregateError.h

23 lines
408 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(Error, Object);
public:
static AggregateError* create(GlobalObject&);
explicit AggregateError(Object& prototype);
virtual ~AggregateError() override = default;
};
}