for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Messenger;
class CurlWrapperCurlException extends CurlWrapperException
{
/**
* @param resource $curlHandler
*/
public function __construct($curlHandler)
$this->code = curl_errno($curlHandler);
$this->message = curl_error($curlHandler);
}