| 39 | explicit ExitException(void* value) : _value(value) {} |
| 40 | ~ExitException() throw() {} |
| 41 | const char* what() const throw() override { |
| 42 | return "ExitException"; |
| 43 | } |
| 44 | void* value() const { |
| 45 | return _value; |
| 46 | } |
no outgoing calls
no test coverage detected