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