Browse Source

Tweak a few error handling things.

Taylor Otwell 10 years ago
parent
commit
9db97c3285
2 changed files with 17 additions and 1 deletions
  1. 17 1
      app/Exceptions/Handler.php
  2. 0 0
      resources/views/errors/503.blade.php

+ 17 - 1
app/Exceptions/Handler.php

@@ -5,6 +5,15 @@ 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.
 	 *
@@ -27,7 +36,14 @@ class Handler extends ExceptionHandler {
 	 */
 	public function render($request, Exception $e)
 	{
-		return parent::render($request, $e);
+		if ($this->isHttpException($e))
+		{
+			return $this->renderHttpException($e);
+		}
+		else
+		{
+			return parent::render($request, $e);
+		}
 	}
 
 }

+ 0 - 0
resources/views/framework/maintenance.php → resources/views/errors/503.blade.php