mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 13:52:19 +08:00
12 lines
228 B
PHP
Executable File
12 lines
228 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
class PrettyPageException extends \Exception
|
|
{
|
|
public function render()
|
|
{
|
|
return response()->view('errors.pretty', ['code' => $this->code, 'message' => $this->message]);
|
|
}
|
|
}
|