// +---------------------------------------------------------------------- namespace think\exception; use think\exception\HttpException; class RouteNotFoundException extends HttpException { public function __construct() { parent::__construct(404); } }