| 19 | }; |
| 20 | |
| 21 | class InvalidMouseButtonEnumValue : public Exception |
| 22 | { |
| 23 | public: |
| 24 | InvalidMouseButtonEnumValue(int enumValue, DebugInfo info) |
| 25 | : Exception("InvalidMouseButtonEnumValue", info) |
| 26 | { |
| 27 | this->error( |
| 28 | "MouseButton enum should not have the following value : {}", enumValue); |
| 29 | } |
| 30 | }; |
| 31 | |
| 32 | class MountFileMissing : public Exception |
| 33 | { |
no outgoing calls
no test coverage detected