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
11public:
12 // prevent constructor by default
13 Error& operator=(Error const&);
14 Error();
15
16public:
17 // member functions
18 // NOLINTBEGIN
19 MCAPI explicit Error(::Scripting::BaseError const& base);
20
21 MCAPI explicit Error(::std::string const& message_);
22
23 MCAPI Error(::Scripting::Error const&);
24
25 MCAPI ~Error();
26 // NOLINTEND
27
28public:
29 // constructor thunks
30 // NOLINTBEGIN
31 MCFOLD void* $ctor(::Scripting::BaseError const& base);
32
33 MCAPI void* $ctor(::std::string const& message_);
34
35 MCAPI void* $ctor(::Scripting::Error const&);
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCFOLD void $dtor();
42 // NOLINTEND
43};
44
45} // namespace Scripting
Definition BaseError.h:12
Definition Error.h:10