LeviLamina
Loading...
Searching...
No Matches
InvalidArgumentError.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#include "mc/deps/script_core/runtime/scripting/InvalidArgumentErrorType.h"
8
9namespace Scripting {
10
11struct InvalidArgumentError : public ::Scripting::BaseError {
12public:
13 // member variables
14 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 InvalidArgumentError& operator=(InvalidArgumentError const&);
22 InvalidArgumentError(InvalidArgumentError const&);
23 InvalidArgumentError();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCNAPI InvalidArgumentError(::std::string const& argTypeName, int index_);
29
30 MCNAPI
31 InvalidArgumentError(::std::string const& argTypeName, ::Scripting::InvalidArgumentErrorType type_, int index_);
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCNAPI void* $ctor(::std::string const& argTypeName, int index_);
38
39 MCNAPI void* $ctor(::std::string const& argTypeName, ::Scripting::InvalidArgumentErrorType type_, int index_);
40 // NOLINTEND
41};
42
43} // namespace Scripting
Definition BaseError.h:7
MCAPI InvalidArgumentError(::std::string const &argTypeName, int index_)
MCAPI void * $ctor(::std::string const &argTypeName, ::Scripting::InvalidArgumentErrorType type_, int index_)
MCAPI InvalidArgumentError(::std::string const &argTypeName, ::Scripting::InvalidArgumentErrorType type_, int index_)
MCAPI void * $ctor(::std::string const &argTypeName, int index_)
Definition Alias.h:14