File: /www/wwwroot/www.sfzvq.com/thinkphp/library/think/exception/FuncNotFoundException.php
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: yunwuxin <448901948@qq.com>
// +----------------------------------------------------------------------
namespace think\exception;
use RuntimeException;
use Throwable;
class FuncNotFoundException extends RuntimeException
{
protected $func;
public function __construct(string $message, string $func = '', Throwable $previous = null)
{
$this->message = $message;
$this->func = $func;
parent::__construct($message, 0, $previous);
}
/**
* 获取方法名
* @access public
* @return string
*/
public function getFunc()
{
return $this->func;
}
}