mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-09-07 16:49:46 +08:00
31 lines
618 B
PHP
31 lines
618 B
PHP
<?php
|
|
|
|
namespace think\exception;
|
|
|
|
use Psr\Container\NotFoundExceptionInterface;
|
|
use RuntimeException;
|
|
use Throwable;
|
|
|
|
class FuncNotFoundException extends RuntimeException implements NotFoundExceptionInterface
|
|
{
|
|
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;
|
|
}
|
|
}
|