Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
12 | final class InvalidAnnotationValue extends Exception implements ValidationException |
||
13 | { |
||
14 | private function __construct(string $message, ?Throwable $previous = null) |
||
15 | { |
||
16 | parent::__construct($message, 0, $previous); |
||
17 | } |
||
18 | |||
19 | public static function new(AnnotationMetadata $annotationMetadata, Throwable $previous) : self |
||
27 | ); |
||
28 | } |
||
30 |