LeviLamina
Loading...
Searching...
No Matches
GameTestError.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#include "mc/gametest/framework/GameTestErrorType.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Scripting { struct ErrorBinding; }
12namespace gametest { struct GameTestErrorContext; }
13// clang-format on
14
15namespace gametest {
16
17struct GameTestError : public ::Scripting::BaseError {
18public:
19 // member variables
20 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 GameTestError& operator=(GameTestError const&);
29 GameTestError(GameTestError const&);
30 GameTestError();
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCNAPI GameTestError(::gametest::GameTestErrorType type_, ::std::string const& message_);
36
38 ::gametest::GameTestErrorType type_,
39 ::std::string const& message_,
40 ::std::vector<::std::string> params_
41 );
42
44 ::gametest::GameTestErrorType type_,
45 ::std::string const& message_,
46 ::std::vector<::std::string> params_,
47 ::std::optional<::gametest::GameTestErrorContext> context_
48 );
49 // NOLINTEND
50
51public:
52 // static functions
53 // NOLINTBEGIN
54 MCNAPI static ::Scripting::ErrorBinding bind();
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCNAPI void* $ctor(::gametest::GameTestErrorType type_, ::std::string const& message_);
61
62 MCNAPI void*
63 $ctor(::gametest::GameTestErrorType type_, ::std::string const& message_, ::std::vector<::std::string> params_);
64
65 MCNAPI void* $ctor(
66 ::gametest::GameTestErrorType type_,
67 ::std::string const& message_,
68 ::std::vector<::std::string> params_,
69 ::std::optional<::gametest::GameTestErrorContext> context_
70 );
71 // NOLINTEND
72};
73
74} // namespace gametest
Definition BaseError.h:12
Definition ErrorBinding.h:16
Definition GameTestErrorContext.h:12
MCAPI GameTestError(::gametest::GameTestErrorType type_, ::std::string const &message_, ::std::vector<::std::string > params_, ::std::optional<::gametest::GameTestErrorContext > context_)
MCAPI void * $ctor(::gametest::GameTestErrorType type_, ::std::string const &message_, ::std::vector<::std::string > params_)
MCAPI void * $ctor(::gametest::GameTestErrorType type_, ::std::string const &message_)
MCAPI GameTestError(::gametest::GameTestErrorType type_, ::std::string const &message_, ::std::vector<::std::string > params_)
MCAPI GameTestError(::gametest::GameTestErrorType type_, ::std::string const &message_)
static MCAPI ::Scripting::ErrorBinding bind()
MCAPI void * $ctor(::gametest::GameTestErrorType type_, ::std::string const &message_, ::std::vector<::std::string > params_, ::std::optional<::gametest::GameTestErrorContext > context_)
Definition Alias.h:14