| 1 | <?php |
||
| 7 | class ImmutableException extends \Exception |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * ImmutableException constructor. |
||
| 12 | * @param string $message |
||
| 13 | * @param int $code |
||
| 14 | * @param Throwable|null $previous |
||
| 15 | */ |
||
| 16 | public function __construct(string $message = '', int $code = 0, Throwable $previous = null) |
||
| 24 | } |
||
| 25 |