wellrested/exceptions/CurlException.inc.php

13 lines
316 B
PHP

<?php
namespace wellrested\exceptions;
require_once(dirname(__FILE__) . '/WellrestedException.inc.php');
/**
* Exception related to a cURL operation. The message and code should correspond
* to the cURL error and error number that caused the excpetion.
*
*/
class CurlException extends WellrestedException {}