1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| <?php
|
| namespace think\exception;
|
| use Psr\Container\NotFoundExceptionInterface;
| use RuntimeException;
| use Throwable;
|
| class FuncNotFoundException extends RuntimeException implements NotFoundExceptionInterface
| {
| public function __construct(string $message, protected string $func = '', Throwable $previous = null)
| {
| $this->message = $message;
|
| parent::__construct($message, 0, $previous);
| }
|
| /**
| * 获取方法名
| * @access public
| * @return string
| */
| public function getFunc()
| {
| return $this->func;
| }
| }
|
|