1 | <?php |
||
11 | abstract class AbstractHttpParserException extends \Exception |
||
12 | { |
||
13 | /** |
||
14 | * AbstractHttpParserException constructor. |
||
15 | * @param string $message |
||
16 | 6 | * @param int $code |
|
17 | * @param \Exception|null $previous |
||
18 | 6 | */ |
|
19 | 6 | public function __construct(string $message = "", int $code = 0, \Exception $previous = null) |
|
23 | } |