1 | <?php |
||
13 | class UnknownDataTypeException extends MappingHandlerException |
||
14 | { |
||
15 | /** |
||
16 | * @var Attribute |
||
17 | */ |
||
18 | protected $definition; |
||
19 | |||
20 | /** |
||
21 | * UnknownTypeException constructor. |
||
22 | * |
||
23 | * @param Attribute $definition |
||
24 | */ |
||
25 | 2 | public function __construct(Attribute $definition) |
|
37 | |||
38 | /** |
||
39 | * Get definition of attribute caused the issue |
||
40 | * |
||
41 | * @return Attribute |
||
42 | */ |
||
43 | public function getDefinition(): Attribute |
||
47 | } |