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

24 lines
417 B
C
Raw Normal View History

2021-06-11 18:06:20 +01:00
/*
* 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);
2021-06-11 18:06:20 +01:00
public:
static AggregateError* create(GlobalObject&);
2021-06-11 18:06:20 +01:00
explicit AggregateError(Object& prototype);
virtual ~AggregateError() override = default;
};
}