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

Method FontNotFound

include/Core/Engine/Exceptions.hpp:62–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60 {
61 public:
62 FontNotFound(
63 std::string_view path, std::vector<std::string> mounts, DebugInfo info)
64 : Exception("FontNotFound", info)
65 {
66 this->error("Could not find Font with path '{}'", path);
67 this->hint("The following paths were used to search for the Font ({})",
68 fmt::join(mounts, ", "));
69 }
70 };
71
72 class UnitializedEngine : public Exception

Callers

nothing calls this directly

Calls 3

joinFunction · 0.50
errorMethod · 0.45
hintMethod · 0.45

Tested by

no test coverage detected