Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

jsarnowski / jsarnowski/brizy-pro   php

Repository URL to install this package:

Version: 2.3.7 

/ campaignmonitor / createsend-php / class / exceptions.php

<?php
if (!class_exists('CurlException')) {
	class CurlException extends \RuntimeException
	{
	    public function __construct($curlMessage, $errorCode)
	    {
	        parent::__construct('Error making request with curl_error: ' . $curlMessage, $errorCode);
	    }
	}
}