ladybird/Userland/Libraries/LibJS/Runtime/AggregateError.h
2021-06-11 18:49:50 +01:00

23 lines
460 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&, String const& message, Vector<Value> const& errors);
explicit AggregateError(Object& prototype);
virtual ~AggregateError() override = default;
};
}