| 111 | }; |
| 112 | |
| 113 | class SceneOnLoadCallbackError : public Exception |
| 114 | { |
| 115 | public: |
| 116 | SceneOnLoadCallbackError(std::string_view sceneFile, |
| 117 | std::string_view nextSceneFile, std::string_view errorMessage, DebugInfo info) |
| 118 | : Exception("SceneOnLoadCallbackError", info) |
| 119 | { |
| 120 | this->error("Encountered error while running OnLoadCallback to load Scene " |
| 121 | "'{}' from Scene '{}' : '{}'", |
| 122 | nextSceneFile, sceneFile, errorMessage); |
| 123 | } |
| 124 | }; |
| 125 | } |