LeviLamina
Loading...
Searching...
No Matches
ScriptWebSocketConnectionFailedError.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 ScriptModuleMinecraftNet {
14
15class ScriptWebSocketConnectionFailedError : public ::Scripting::BaseError {
16public:
17 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 ScriptWebSocketConnectionFailedError& operator=(ScriptWebSocketConnectionFailedError const&);
26 ScriptWebSocketConnectionFailedError(ScriptWebSocketConnectionFailedError const&);
27 ScriptWebSocketConnectionFailedError();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCNAPI ScriptWebSocketConnectionFailedError(::std::string uri, uint errorCode);
33
35 // NOLINTEND
36
37public:
38 // static functions
39 // NOLINTBEGIN
40 MCNAPI static ::Scripting::ErrorBinding bind();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCNAPI void* $ctor(::std::string uri, uint errorCode);
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCNAPI void $dtor();
53 // NOLINTEND
54};
55
56} // namespace ScriptModuleMinecraftNet
MCAPI void * $ctor(::std::string uri, uint errorCode)
MCAPI ScriptWebSocketConnectionFailedError(::std::string uri, uint errorCode)
Definition BaseError.h:12
Definition ErrorBinding.h:16
Definition Alias.h:14