return [
"Your Error Namespace" => "the class that handle this error",
];
namespace App\Exceptions;
use hamidreza2005\LaravelApiErrorHandler\Traits\ApiErrorHandler;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable;
class Handler extends ExceptionHandler
{
use ApiErrorHandler;
/**
* A list of the exception types that are not reported. * * @var array
*/
protected $dontReport = [
//
];
/**
* A list of the inputs that are never flashed for validation exceptions. * * @var array
*/
protected $dontFlash = [
'password',
'password_confirmation',
];
/**
* Register the exception handling callbacks for the application. * * @return void
*/
public function register()
{
//
}
public function render($request, Throwable $e)
{
return $this->handleError($this->prepareException($e));
}
}
namespace myNamespace;
class MyException extends ExceptionAbstract
{
public function handleStatusCode():void
{
$this->statusCode = 2018;
}
public function handleMessage():void
{
$this->message = "My Message";
}
}