| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class UnknownWhoisException extends \Exception |
||
| 14 | { |
||
| 15 | |||
| 16 | /** @var int An integer code for the exception. */ |
||
| 17 | const CODE = 0; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Basic Exception Constructor |
||
| 21 | * @param string $message The Exceptions message: this type requires it be related to a missing item. |
||
| 22 | * @param int $code The user defined exception code. |
||
| 23 | * @param null|\Exception $previous If present, the previous exception if nested exception. |
||
| 24 | */ |
||
| 25 | public function __construct($message, $code = self::CODE, \Exception $previous = null) |
||
| 30 |