| 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 | { |