LeviLamina
Loading...
Searching...
No Matches
InvalidArgumentError.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#include "mc/deps/scripting/runtime/InvalidArgumentErrorType.h"
8
9namespace Scripting {
10
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<1, 1, ::Scripting::InvalidArgumentErrorType> type;
16 ::ll::TypedStorage<4, 4, int> index;
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
23
24public:
25 // member functions
26 // NOLINTBEGIN
28
29 MCAPI InvalidArgumentError(::std::string const& message_, int index_);
30
31 MCAPI InvalidArgumentError(::std::string const& message_, ::Scripting::InvalidArgumentErrorType type_, int index_);
32
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor(::Scripting::InvalidArgumentError const&);
40
41 MCAPI void* $ctor(::std::string const& message_, int index_);
42
43 MCAPI void* $ctor(::std::string const& message_, ::Scripting::InvalidArgumentErrorType type_, int index_);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCFOLD void $dtor();
50 // NOLINTEND
51};
52
53} // namespace Scripting
Definition BaseError.h:12
Definition InvalidArgumentError.h:11