PanicException.php 273 B

12345678910111213141516
  1. <?php
  2. namespace App\Exceptions;
  3. use Throwable;
  4. class PanicException extends Exception
  5. {
  6. public function __construct($message = "", $code = 0, Throwable $previous = null)
  7. {
  8. parent::__construct($message, $type='panic', $code,$previous = null);
  9. }
  10. }