| Total Complexity | 1 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class ErrorResponse { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * @var string Fehlermeldung |
||
| 9 | */ |
||
| 10 | public readonly string $message; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var string|null Klasse der Exception (falls verfügbar) |
||
| 14 | */ |
||
| 15 | public readonly ?string $type; |
||
| 16 | |||
| 17 | |||
| 18 | public function __construct(string $message, ?string $type = null) |
||
| 22 | } |
||
| 23 | } |