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

Method BootScriptMissing

include/Core/Engine/Exceptions.hpp:11–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9 {
10 public:
11 BootScriptMissing(const std::vector<std::string>& mountedPaths, DebugInfo info)
12 : Exception("BootScriptMissing", info)
13 {
14 this->error(
15 "Unable to find a 'boot.lua' file which is required to start the engine");
16 this->hint("ObEngine tried to fetch the 'boot.lua' file from the following "
17 "locations : ({})",
18 fmt::join(mountedPaths, ", "));
19 }
20 };
21
22 class BootScriptLoadingError : public Exception

Callers

nothing calls this directly

Calls 3

joinFunction · 0.50
errorMethod · 0.45
hintMethod · 0.45

Tested by

no test coverage detected