server/src/app/Exceptions/Handler.php
author ymh <ymh.work@gmail.com>
Tue, 04 Oct 2016 13:53:56 +0200
changeset 320 0fce13da58af
parent 2 00e2916104fe
child 321 aefaad270b9b
permissions -rw-r--r--
filter geostat by area + tests

<?php

namespace CorpusParole\Exceptions;

use Exception;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;

class Handler extends ExceptionHandler
{
    /**
     * A list of the exception types that should not be reported.
     *
     * @var array
     */
    protected $dontReport = [
        'Symfony\Component\HttpKernel\Exception\HttpException',
    ];

    /**
     * Report or log an exception.
     *
     * This is a great spot to send exceptions to Sentry, Bugsnag, etc.
     *
     * @param \Exception $e
     */
    public function report(Exception $e)
    {
        return parent::report($e);
    }

    /**
     * Render an exception into an HTTP response.
     *
     * @param \Illuminate\Http\Request $request
     * @param \Exception               $e
     *
     * @return \Illuminate\Http\Response
     */
    public function render($request, Exception $e)
    {
        if ( $request->isXmlHttpRequest() || $request->wantsJson() ) {
            return response()->json([
                'message' => class_basename( $e ) . ' in ' . basename( $e->getFile() ) . ' line ' . $e->getLine() . ( ( $message = $e->getMessage() ) ? ': ' . $e->getMessage() : '.' ),
                'trace' => $e->getTrace()
            ], 500);
        }
        return parent::render($request, $e);
    }
}