| 61 | }; |
| 62 | |
| 63 | class NoSelectedAnimationGroup : public Exception |
| 64 | { |
| 65 | public: |
| 66 | NoSelectedAnimationGroup(std::string_view animation, DebugInfo info) |
| 67 | : Exception("NoSelectedAnimationGroup", info) |
| 68 | { |
| 69 | this->error("The Animation '{}' does not have any AnimationGroup selected", |
| 70 | animation); |
| 71 | } |
| 72 | }; |
| 73 | |
| 74 | class UnknownAnimationCommand : public Exception |
| 75 | { |