blessing-skin-server/app/Exceptions/PrettyPageException.php
2019-04-04 19:50:52 +08:00

12 lines
228 B
PHP

<?php
namespace App\Exceptions;
class PrettyPageException extends \Exception
{
public function render()
{
return response()->view('errors.pretty', ['code' => $this->code, 'message' => $this->message]);
}
}