* This constructor enables setting a custom error message and the method name where * the exception has been thrown. */
| 174 | * the exception has been thrown. |
| 175 | */ |
| 176 | curl_multi_exception(const std::string &error, const std::string &method) : |
| 177 | curl_exception(error,method), code(CURLM_OK) {} |
| 178 | /** |
| 179 | * The constructor will transform a CURLMcode error to a proper error message. |
| 180 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected