| 1 | <?php |
||
| 7 | final class DecoderException extends \RuntimeException |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @param string $contentType |
||
| 11 | * |
||
| 12 | * @return self |
||
| 13 | */ |
||
| 14 | public static function createMissing(string $contentType): self |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $contentType |
||
| 21 | * |
||
| 22 | * @return self |
||
| 23 | */ |
||
| 24 | public static function createNotParsable(string $contentType): self |
||
| 28 | } |
||
| 29 |