| Total Complexity | 2 | 
| Total Lines | 18 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 13 | class ShortUrlNotFoundException extends DomainException implements ProblemDetailsExceptionInterface  | 
            ||
| 14 | { | 
            ||
| 15 | use CommonProblemDetailsExceptionTrait;  | 
            ||
| 16 | |||
| 17 | private const TITLE = 'Short URL not found';  | 
            ||
| 18 | public const TYPE = 'INVALID_SHORTCODE';  | 
            ||
| 19 | |||
| 20 | 3 | public static function fromNotFoundShortCode(string $shortCode, ?string $domain = null): self  | 
            |
| 33 |