Improved exception handler for AJAX requests
This commit is contained in:
parent
037a923363
commit
76049c5860
1 changed files with 3 additions and 2 deletions
|
@ -72,10 +72,11 @@ class Handler extends ExceptionHandler
|
||||||
|
|
||||||
// If we are debugging, return the exception in it's full manner.
|
// If we are debugging, return the exception in it's full manner.
|
||||||
return response()->json([
|
return response()->json([
|
||||||
'error' => $e->getMessage(),
|
'error' => (empty($e->getMessage())) ? $exception : $e->getMessage(),
|
||||||
'code' => $e->getCode(),
|
'code' => $e->getCode(),
|
||||||
'file' => $e->getFile(),
|
'file' => $e->getFile(),
|
||||||
'line' => $e->getLine()
|
'line' => $e->getLine(),
|
||||||
|
'trace' => $e->getTrace(),
|
||||||
], 500);
|
], 500);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue