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

Method ResourceNotFound

include/Core/System/Exceptions.hpp:11–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9 {
10 public:
11 ResourceNotFound(
12 std::string_view path, std::vector<std::string> mounts, DebugInfo info)
13 : Exception("ResourceNotFound", info)
14 {
15 this->error("Resource at path '{}' not found", path);
16 this->hint("The following paths were used to search for the resource : ({})",
17 fmt::join(mounts, ", "));
18 }
19 };
20
21 class InvalidMouseButtonEnumValue : public Exception

Callers

nothing calls this directly

Calls 3

joinFunction · 0.50
errorMethod · 0.45
hintMethod · 0.45

Tested by

no test coverage detected