| 98 | }; |
| 99 | |
| 100 | class NoSelectedAnimation : public Exception |
| 101 | { |
| 102 | public: |
| 103 | NoSelectedAnimation(std::string_view animator, DebugInfo info) |
| 104 | : Exception("NoSelectedAnimation", info) |
| 105 | { |
| 106 | this->error( |
| 107 | "The Animator '{}' does not have any Animation selected", animator); |
| 108 | } |
| 109 | }; |
| 110 | |
| 111 | class UnknownEasingFromEnum : public Exception |
| 112 | { |
no outgoing calls
no test coverage detected