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.

ClassNotFoundException.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 ClassNotFoundException extends RuntimeException implements NotFoundExceptionInterface
  16. {
  17. protected $class;
  18. public function __construct(string $message, string $class = '', Throwable $previous = null)
  19. {
  20. $this->message = $message;
  21. $this->class = $class;
  22. parent::__construct($message, 0, $previous);
  23. }
  24. /**
  25. * 获取类名
  26. * @access public
  27. * @return string
  28. */
  29. public function getClass()
  30. {
  31. return $this->class;
  32. }
  33. }