1 | <?php |
||
13 | class NotModifiedException extends \Exception |
||
14 | { |
||
15 | /** |
||
16 | * @var Response |
||
17 | */ |
||
18 | protected $response; |
||
19 | |||
20 | /** |
||
21 | * @param Response $response |
||
22 | * @param int $code |
||
23 | * @param \Exception|null $previous |
||
24 | */ |
||
25 | 3 | public function __construct(Response $response, $code = 0, \Exception $previous = null) |
|
35 | |||
36 | /** |
||
37 | * @return Response |
||
38 | */ |
||
39 | 2 | public function getResponse() |
|
43 | } |
||
44 |