| 1 | <?php |
||
| 7 | class NotFoundException extends UnexpectedResponseException |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @param string $url |
||
| 11 | * @param ResponseInterface $response |
||
| 12 | * @param string $message |
||
| 13 | * @param int $code |
||
| 14 | * @param \Exception $previous |
||
| 15 | */ |
||
| 16 | 2 | public function __construct($url, ResponseInterface $response, $message = '', $code = 0, \Exception $previous = null) |
|
| 24 | } |
||
| 25 |