throw it directly, without error_code or other complications
| 7 | |
| 8 | // throw it directly, without error_code or other complications |
| 9 | Error::Error() : code(0) {} |
| 10 | |
| 11 | Error::Error(int c) : code(c), message(get_message(c)) {} |
| 12 | std::string Error::get_message(int code) { |
nothing calls this directly
no outgoing calls
no test coverage detected