| 88 | struct ForcedExit: public std::runtime_error |
| 89 | { |
| 90 | ForcedExit(const std::string& arg): |
| 91 | std::runtime_error(arg) |
| 92 | { |
| 93 | } |
| 94 | }; |
| 95 | |
| 96 | struct AlarmExit: public std::runtime_error |
nothing calls this directly
no outgoing calls
no test coverage detected