| 1 | <?php |
||
| 16 | class UnsupportedTypeException extends DeserializationException { |
||
| 17 | |||
| 18 | private $type; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param mixed $type |
||
| 22 | * @param string $message |
||
| 23 | * @param Exception|null $previous |
||
| 24 | */ |
||
| 25 | 2 | public function __construct( $type, $message = '', Exception $previous = null ) { |
|
| 34 | |||
| 35 | /** |
||
| 36 | * @return mixed |
||
| 37 | */ |
||
| 38 | 2 | public function getUnsupportedType() { |
|
| 41 | |||
| 42 | } |
||
| 43 |