| 143 | }; |
| 144 | |
| 145 | class InvalidAnimationFile : public Exception |
| 146 | { |
| 147 | public: |
| 148 | InvalidAnimationFile(std::string_view path, DebugInfo info) |
| 149 | : Exception("InvalidAnimationFile", info) |
| 150 | { |
| 151 | this->error("Error occured while loading Animation file '{}'", path); |
| 152 | } |
| 153 | }; |
| 154 | } |