| 29 | using namespace logid; |
| 30 | |
| 31 | InputDevice::InvalidEventCode::InvalidEventCode(const std::string& name) : |
| 32 | _what("Invalid event code " + name) { |
| 33 | } |
| 34 | |
| 35 | InputDevice::InvalidEventCode::InvalidEventCode(uint code) : |
| 36 | _what("Invalid event code " + std::to_string(code)) { |
nothing calls this directly
no outgoing calls
no test coverage detected