LeviLamina
Loading...
Searching...
No Matches
Error.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting {
6
7struct Error {
8public:
9 // member variables
10 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 Error();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI Error(::Scripting::Error const&);
25
26 MCAPI explicit Error(::std::string const& message_);
27
28 MCAPI ::Scripting::Error& operator=(::Scripting::Error const&);
29
30 MCAPI ::Scripting::Error& operator=(::Scripting::Error&&);
31
32 MCAPI ::std::string toString() const;
33
34 MCAPI ~Error();
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCAPI void* $ctor(::Scripting::Error const&);
41
42 MCAPI void* $ctor(::std::string const& message_);
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCFOLD void $dtor();
49 // NOLINTEND
50};
51
52} // namespace Scripting
Definition Error.h:7
Definition Alias.h:14