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