LeviLamina
Loading...
Searching...
No Matches
PropertyOutOfBoundsError.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 PropertyOutOfBoundsError : public ::Scripting::BaseError {
11public:
12 // member variables
13 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 PropertyOutOfBoundsError& operator=(PropertyOutOfBoundsError const&);
22 PropertyOutOfBoundsError(PropertyOutOfBoundsError const&);
23 PropertyOutOfBoundsError();
24
25public:
26 // member functions
27 // NOLINTBEGIN
29 ::std::string const& propertyName,
30 ::std::optional<double> minValue_,
31 ::std::optional<double> maxValue_
32 );
33
35 ::std::string const& propertyName,
36 double value_,
37 ::std::optional<double> minValue_,
38 ::std::optional<double> maxValue_
39 );
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCNAPI void*
46 $ctor(::std::string const& propertyName, ::std::optional<double> minValue_, ::std::optional<double> maxValue_);
47
48 MCNAPI void* $ctor(
49 ::std::string const& propertyName,
50 double value_,
51 ::std::optional<double> minValue_,
52 ::std::optional<double> maxValue_
53 );
54 // NOLINTEND
55};
56
57} // namespace Scripting
Definition BaseError.h:7
MCAPI void * $ctor(::std::string const &propertyName, ::std::optional< double > minValue_, ::std::optional< double > maxValue_)
MCAPI PropertyOutOfBoundsError(::std::string const &propertyName, ::std::optional< double > minValue_, ::std::optional< double > maxValue_)
MCAPI PropertyOutOfBoundsError(::std::string const &propertyName, double value_, ::std::optional< double > minValue_, ::std::optional< double > maxValue_)
MCAPI void * $ctor(::std::string const &propertyName, double value_, ::std::optional< double > minValue_, ::std::optional< double > maxValue_)
Definition Alias.h:14