| 12345678910111213141516 |
- <?php
- namespace App\Exceptions;
- use Illuminate\Support\Facades\Auth;
- use Throwable;
- class ErrorException extends Exception
- {
- public function __construct($message = "", $code = 0, Throwable $previous = null)
- {
- parent::__construct($message,$type='error',$code, $previous);
- }
- }
|