FatalException.php 265 B

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