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

Class ResourceNotFound

include/Core/System/Exceptions.hpp:8–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6namespace obe::System::Exceptions
7{
8 class ResourceNotFound : public Exception
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
22 {

Callers 2

loadMethod · 0.85
loadAllMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected