* This constructor allows to specify a custom error message and the method name where * the exception has been thrown. */
| 145 | * the exception has been thrown. |
| 146 | */ |
| 147 | curl_easy_exception(const std::string &error, const std::string &method) : |
| 148 | curl_exception(error,method), code(CURLE_OK) {} |
| 149 | |
| 150 | /** |
| 151 | * The constructor will transform a CURLcode error in a proper error message. |
nothing calls this directly
no outgoing calls
no test coverage detected