mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-15 06:09:58 +08:00
12 lines
228 B
PHP
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]);
|
|
}
|
|
}
|