LeviLamina
Loading...
Searching...
No Matches
FunctionError.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 Error; }
11// clang-format on
12
13namespace ScriptUtils {
14
15struct FunctionError : public ::Scripting::BaseError {
16public:
17 // prevent constructor by default
18 FunctionError();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCNAPI explicit FunctionError(::std::string_view functionName);
24
25 MCNAPI explicit operator ::Scripting::Error() const;
26 // NOLINTEND
27
28public:
29 // constructor thunks
30 // NOLINTBEGIN
31 MCNAPI void* $ctor(::std::string_view functionName);
32 // NOLINTEND
33};
34
35} // namespace ScriptUtils
MCAPI FunctionError(::std::string_view functionName)
MCAPI void * $ctor(::std::string_view functionName)
Definition BaseError.h:12
Definition Error.h:10