MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / SceneScriptLoadingError

Class SceneScriptLoadingError

include/Core/Scene/Exceptions.hpp:100–111  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98 };
99
100 class SceneScriptLoadingError : public Exception
101 {
102 public:
103 SceneScriptLoadingError(std::string_view sceneFile, std::string_view scriptPath,
104 std::string_view errorMessage, DebugInfo info)
105 : Exception("SceneScriptLoadingError", info)
106 {
107 this->error("Failed to load Scene '{}' script file '{}' as it "
108 "encountered following error : '{}'",
109 sceneFile, scriptPath, errorMessage);
110 }
111 };
112
113 class SceneOnLoadCallbackError : public Exception
114 {

Callers 1

loadMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected