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

Class FontNotFound

include/Core/Engine/Exceptions.hpp:59–70  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

57 };
58
59 class FontNotFound : public Exception
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
73 {

Callers 1

getFontMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected