LeviLamina
Loading...
Searching...
No Matches
Error.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/BaseError.h"
7
8namespace Scripting {
9
10struct Error : public ::Scripting::BaseError {
11public:
12 // prevent constructor by default
13 Error();
14
15public:
16 // member functions
17 // NOLINTBEGIN
18 MCAPI explicit Error(::Scripting::BaseError const& base);
19
20 MCAPI explicit Error(::std::string const& message_);
21
22 MCFOLD void overrideName(::std::string const& name_);
23 // NOLINTEND
24
25public:
26 // constructor thunks
27 // NOLINTBEGIN
28 MCAPI void* $ctor(::Scripting::BaseError const& base);
29
30 MCAPI void* $ctor(::std::string const& message_);
31 // NOLINTEND
32};
33
34} // namespace Scripting
Definition BaseError.h:12