| 132 | }; |
| 133 | |
| 134 | class MissingAnimationProperty : public Exception |
| 135 | { |
| 136 | public: |
| 137 | MissingAnimationProperty(std::string_view propertyName, DebugInfo info) |
| 138 | : Exception("MissingAnimationProperty", info) |
| 139 | { |
| 140 | this->error("Unable to retrieve property '{}' from Animation config file", |
| 141 | propertyName); |
| 142 | } |
| 143 | }; |
| 144 | |
| 145 | class InvalidAnimationFile : public Exception |
| 146 | { |
no outgoing calls
no test coverage detected