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 MCNAPI ArgumentOutOfBoundsError(::std::string const& message_, double value_, double minValue_, double maxValue_);
32
33 MCNAPI ::Scripting::ArgumentOutOfBoundsError& operator=(::Scripting::ArgumentOutOfBoundsError&&);
34
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
42
44
45 MCNAPI void* $ctor(::std::string const& message_, double value_, double minValue_, double maxValue_);
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCNAPI void $dtor();
52 // NOLINTEND
53};
54
55} // namespace Scripting
Definition ArgumentOutOfBoundsError.h:10
MCAPI::Scripting::ArgumentOutOfBoundsError & operator=(::Scripting::ArgumentOutOfBoundsError &&)
MCAPI void * $ctor(::Scripting::ArgumentOutOfBoundsError const &)
MCAPI ArgumentOutOfBoundsError(::Scripting::ArgumentOutOfBoundsError &&)
MCAPI ArgumentOutOfBoundsError(::std::string const &message_, double value_, double minValue_, double maxValue_)
MCAPI void * $ctor(::std::string const &message_, double value_, double minValue_, double maxValue_)
MCAPI ArgumentOutOfBoundsError(::Scripting::ArgumentOutOfBoundsError const &)
MCAPI void * $ctor(::Scripting::ArgumentOutOfBoundsError &&)
Definition Error.h:7
Definition Alias.h:14