| 1 | <?php |
||
| 21 | class SeriouslyMalformedUrlException extends \InvalidArgumentException implements PdpException |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Public constructor. |
||
| 25 | * |
||
| 26 | * @param string $malformedUrl URL that caused pdp_parse_url() to return false |
||
| 27 | * @param int $code The Exception code |
||
| 28 | * @param \Exception $previous The previous exception used for the exception chaining |
||
| 29 | */ |
||
| 30 | 4 | public function __construct($malformedUrl = '', $code = 0, $previous = null) |
|
| 35 | } |
||
| 36 |