| 264 | }; |
| 265 | |
| 266 | struct malformed_input : public error { |
| 267 | malformed_input() : error(errc::malformed_input) {} |
| 268 | malformed_input(const char* what_arg) |
| 269 | : error(errc::malformed_input, what_arg) {} |
| 270 | malformed_input(const std::string& what_arg) |
| 271 | : error(errc::malformed_input, what_arg) {} |
| 272 | }; |
| 273 | struct error_code : public error { |
| 274 | error_code(int r) : error(-r, boost::system::generic_category()) {} |
| 275 | error_code(int r, const char* what_arg) |
no outgoing calls
no test coverage detected