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/script_core/runtime/scripting/BaseError.h"
7
8namespace Scripting {
9
10struct ArgumentOutOfBoundsError : public ::Scripting::BaseError {
11public:
12 // member variables
13 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ArgumentOutOfBoundsError& operator=(ArgumentOutOfBoundsError const&);
23 ArgumentOutOfBoundsError(ArgumentOutOfBoundsError const&);
24 ArgumentOutOfBoundsError();
25
26public:
27 // member functions
28 // NOLINTBEGIN
30 ::std::string const& propertyName,
31 int index_,
32 ::std::optional<double> value_,
33 ::std::optional<double> minValue_,
34 ::std::optional<double> maxValue_
35 );
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCNAPI void* $ctor(
42 ::std::string const& propertyName,
43 int index_,
44 ::std::optional<double> value_,
45 ::std::optional<double> minValue_,
46 ::std::optional<double> maxValue_
47 );
48 // NOLINTEND
49};
50
51} // namespace Scripting
MCAPI ArgumentOutOfBoundsError(::std::string const &propertyName, int index_, ::std::optional< double > value_, ::std::optional< double > minValue_, ::std::optional< double > maxValue_)
MCAPI void * $ctor(::std::string const &propertyName, int index_, ::std::optional< double > value_, ::std::optional< double > minValue_, ::std::optional< double > maxValue_)
Definition BaseError.h:7
Definition Alias.h:14