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