| 67 | }; |
| 68 | |
| 69 | class InvalidInputCombinationCode : public Exception |
| 70 | { |
| 71 | public: |
| 72 | InvalidInputCombinationCode( |
| 73 | std::string_view action, std::string_view combinationCode, DebugInfo info) |
| 74 | : Exception("InvalidInputCombinationCode", info) |
| 75 | { |
| 76 | this->error( |
| 77 | "The following InputCombinationCode '{}' for InputAction '{}' is invalid", |
| 78 | combinationCode, action); |
| 79 | } |
| 80 | }; |
| 81 | |
| 82 | class InputButtonAlreadyInCombination : public Exception |
| 83 | { |