| 1 | <?php |
||
| 10 | class DeserializerException extends ReaderException |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string $response |
||
| 14 | */ |
||
| 15 | private $response; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * DeserializerException constructor. |
||
| 19 | * @param string $message |
||
| 20 | * @param string $response |
||
| 21 | * @param \Exception $previous |
||
| 22 | */ |
||
| 23 | public function __construct($message, $response, \Exception $previous = null) |
||
| 28 | } |