LeviLamina
Loading...
Searching...
No Matches
ContainerSizeOutOfBoundsError.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/BaseError.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { struct ErrorBinding; }
11// clang-format on
12
13namespace Scripting {
14
15struct ContainerSizeOutOfBoundsError : public ::Scripting::BaseError {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<4, 4, uint> maxSize;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 ContainerSizeOutOfBoundsError();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI ContainerSizeOutOfBoundsError(::std::string const& propertyName, uint maxSize_);
30 // NOLINTEND
31
32public:
33 // static functions
34 // NOLINTBEGIN
35 MCAPI static ::Scripting::ErrorBinding bind();
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor(::std::string const& propertyName, uint maxSize_);
42 // NOLINTEND
43};
44
45} // namespace Scripting
Definition BaseError.h:12
Definition ErrorBinding.h:16