Skip to content

Instantly share code, notes, and snippets.

@osibg
Created June 16, 2020 06:05
Show Gist options
  • Save osibg/be05ba87b052eb4b695950dd51951282 to your computer and use it in GitHub Desktop.
Save osibg/be05ba87b052eb4b695950dd51951282 to your computer and use it in GitHub Desktop.
Custom exception with own rendering method
<?php
namespace App\Exceptions;
class RenderException extends \Exception
{
public function report()
{
// overwrite default report/log behavior
}
public function render($request)
{
return response('...', 500);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment