No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FuncNotFoundException.php 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: yunwuxin <448901948@qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace think\exception;
  12. use Psr\Container\NotFoundExceptionInterface;
  13. use RuntimeException;
  14. use Throwable;
  15. class FuncNotFoundException extends RuntimeException implements NotFoundExceptionInterface
  16. {
  17. protected $func;
  18. public function __construct(string $message, string $func = '', Throwable $previous = null)
  19. {
  20. $this->message = $message;
  21. $this->func = $func;
  22. parent::__construct($message, 0, $previous);
  23. }
  24. /**
  25. * 获取方法名
  26. * @access public
  27. * @return string
  28. */
  29. public function getFunc()
  30. {
  31. return $this->func;
  32. }
  33. }