| 1 | <?php |
||
| 10 | class InvalidRequestException extends Exception { |
||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $path; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param string $path |
||
| 18 | * @param int $code |
||
| 19 | */ |
||
| 20 | 434 | public function __construct($path, $code = 0) { |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | 4 | public function getPath() { |
|
| 34 | } |
||
| 35 |