| 1 | <?php |
||
| 23 | abstract class AbstractCURLException extends Exception { |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Constructor. |
||
| 27 | * |
||
| 28 | * @param string $message The message. |
||
| 29 | * @param int $code The code. |
||
| 30 | * @param Exception $previous The previous exception. |
||
| 31 | */ |
||
| 32 | public function __construct($message, $code = 500, Exception $previous = null) { |
||
| 35 | } |
||
| 36 |