LeviLamina
Loading...
Searching...
No Matches
ArgumentOutOfBoundsError.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
8namespace Scripting {
9
11public:
12 // member variables
13 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
23
24public:
25 // member functions
26 // NOLINTBEGIN
28
30
31 MCAPI ArgumentOutOfBoundsError(::std::string const& message_, double value_, double minValue_, double maxValue_);
32
33 MCFOLD ::Scripting::ArgumentOutOfBoundsError& operator=(::Scripting::ArgumentOutOfBoundsError&&);
34
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCFOLD void* $ctor(::Scripting::ArgumentOutOfBoundsError&&);
42
43 MCFOLD void* $ctor(::Scripting::ArgumentOutOfBoundsError const&);
44
45 MCAPI void* $ctor(::std::string const& message_, double value_, double minValue_, double maxValue_);
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCFOLD void $dtor();
52 // NOLINTEND
53};
54
55} // namespace Scripting
Definition ArgumentOutOfBoundsError.h:10
Definition Error.h:7
Definition Alias.h:14