| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class Exception extends \Exception implements Stringable |
||
| 15 | { |
||
| 16 | public function __construct(string $message, public array|null $errorInfo = [], \Exception $previous = null) |
||
| 19 | } |
||
| 20 | 261 | ||
| 21 | 261 | /** |
|
| 22 | 261 | * @return string Readable representation of exception. |
|
| 23 | */ |
||
| 24 | public function __toString(): string |
||
| 29 |