20 lines
409 B
PHP
20 lines
409 B
PHP
<?php
|
|
|
|
/**
|
|
* pjdietz\WellRESTed\Exceptions\CurlException
|
|
*
|
|
* @author PJ Dietz <pj@pjdietz.com>
|
|
* @copyright Copyright 2015 by PJ Dietz
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace pjdietz\WellRESTed\Exceptions;
|
|
|
|
/**
|
|
* Exception related to a cURL operations. The message and code should correspond
|
|
* to the cURL error and error number that caused the excpetion.
|
|
*/
|
|
class CurlException extends WellRESTedException
|
|
{
|
|
}
|