| 72 | }; |
| 73 | |
| 74 | class UnknownAnimationCommand : public Exception |
| 75 | { |
| 76 | public: |
| 77 | UnknownAnimationCommand( |
| 78 | std::string_view animation, std::string_view command, DebugInfo info) |
| 79 | : Exception("UnknownAnimationCommand", info) |
| 80 | { |
| 81 | this->error("Unknown command '{}' in code of Animation '{}'"); |
| 82 | this->hint( |
| 83 | "Try one of the following valid commands (DELAY, PLAY_GROUP, CALL)"); |
| 84 | } |
| 85 | }; |
| 86 | |
| 87 | class UnknownAnimation : public Exception |
| 88 | { |