33 lines
869 B
Plaintext
33 lines
869 B
Plaintext
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2024 http://www.tensent.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
|
|
// +----------------------------------------------------------------------
|
|
namespace $CLASS_NAMESPACE$;
|
|
|
|
use Exception;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Response;
|
|
|
|
class $CLASS$ extends Exception
|
|
{
|
|
/**
|
|
* Report the exception.
|
|
*/
|
|
public function report(): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Render the exception as an HTTP response.
|
|
*/
|
|
public function render(Request $request): Response
|
|
{
|
|
//
|
|
}
|
|
}
|