12 lines
170 B
PHP
12 lines
170 B
PHP
<?php
|
|
namespace app\index\controller;
|
|
|
|
use think\facade\View;
|
|
|
|
class Error
|
|
{
|
|
public function __call($method, $args)
|
|
{
|
|
return View::fetch('../view/404');
|
|
}
|
|
} |