| 109 | }; |
| 110 | |
| 111 | class UnknownEasingFromEnum : public Exception |
| 112 | { |
| 113 | public: |
| 114 | UnknownEasingFromEnum(int enumValue, DebugInfo info) |
| 115 | : Exception("UnknownEasingFromEnum", info) |
| 116 | { |
| 117 | this->error("Enum with value {} could not be converted to an easing function", |
| 118 | enumValue); |
| 119 | } |
| 120 | }; |
| 121 | |
| 122 | class UnknownEasingFromString : public Exception |
| 123 | { |