| 257 | bad_alloc(const std::string& what_arg) : error(errc::bad_alloc, what_arg) {} |
| 258 | }; |
| 259 | struct end_of_buffer : public error { |
| 260 | end_of_buffer() : error(errc::end_of_buffer) {} |
| 261 | end_of_buffer(const char* what_arg) : error(errc::end_of_buffer, what_arg) {} |
| 262 | end_of_buffer(const std::string& what_arg) |
| 263 | : error(errc::end_of_buffer, what_arg) {} |
| 264 | }; |
| 265 | |
| 266 | struct malformed_input : public error { |
| 267 | malformed_input() : error(errc::malformed_input) {} |
no outgoing calls
no test coverage detected