LeviLamina
Loading...
Searching...
No Matches
RuntimeConditionError.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 { class RuntimeConditions; }
11namespace Scripting { struct ErrorBinding; }
12// clang-format on
13
14namespace Scripting {
15
16struct RuntimeConditionError : public ::Scripting::BaseError {
17public:
18 // prevent constructor by default
19 RuntimeConditionError();
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI
25 RuntimeConditionError(::Scripting::RuntimeConditions const& missingRuntimeConditions, ::std::string const& apiName);
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(::Scripting::RuntimeConditions const& missingRuntimeConditions, ::std::string const& apiName);
38 // NOLINTEND
39};
40
41} // namespace Scripting
Definition RuntimeConditions.h:12
Definition BaseError.h:12
Definition ErrorBinding.h:16