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

Method TextureNotFound

include/Core/Engine/Exceptions.hpp:49–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47 {
48 public:
49 TextureNotFound(
50 std::string_view path, std::vector<std::string> mounts, DebugInfo info)
51 : Exception("TextureNotFound", info)
52 {
53 this->error("Could not find Texture with path '{}'", path);
54 this->hint("The following paths were used to search for the Texture ({})",
55 fmt::join(mounts, ", "));
56 }
57 };
58
59 class FontNotFound : public Exception

Callers

nothing calls this directly

Calls 3

joinFunction · 0.50
errorMethod · 0.45
hintMethod · 0.45

Tested by

no test coverage detected