LeviLamina
Loading...
Searching...
No Matches
UnsupportedAPIError.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
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { struct ErrorBinding; }
11// clang-format on
12
13namespace Scripting {
14
15struct UnsupportedAPIError : public ::Scripting::BaseError {
16public:
17 // prevent constructor by default
18 UnsupportedAPIError();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCAPI explicit UnsupportedAPIError(::std::string const& msg);
24
25 MCAPI ~UnsupportedAPIError();
26 // NOLINTEND
27
28public:
29 // static functions
30 // NOLINTBEGIN
31 MCAPI static ::Scripting::ErrorBinding bind();
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCAPI void* $ctor(::std::string const& msg);
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCFOLD void $dtor();
44 // NOLINTEND
45};
46
47} // namespace Scripting
Definition BaseError.h:12
Definition ErrorBinding.h:15