| 30 | // ---------------------------------------------------------------------------------------- |
| 31 | |
| 32 | class http_parse_error : public error |
| 33 | { |
| 34 | public: |
| 35 | http_parse_error(const std::string& str, int http_error_code_): |
| 36 | error(str),http_error_code(http_error_code_) {} |
| 37 | |
| 38 | const int http_error_code; |
| 39 | }; |
| 40 | |
| 41 | // ---------------------------------------------------------------------------------------- |
| 42 |
no outgoing calls
no test coverage detected