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