ErrorException.php 301 B

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