first commit

This commit is contained in:
Mr.Qin
2022-08-19 19:48:37 +08:00
commit afdd648b65
3275 changed files with 631084 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<?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 Psr\Container\NotFoundExceptionInterface;
use RuntimeException;
use Throwable;
class ClassNotFoundException extends RuntimeException implements NotFoundExceptionInterface
{
protected $class;
public function __construct(string $message, string $class = '', Throwable $previous = null)
{
$this->message = $message;
$this->class = $class;
parent::__construct($message, 0, $previous);
}
/**
* 获取类名
* @access public
* @return string
*/
public function getClass()
{
return $this->class;
}
}

View File

@@ -0,0 +1,30 @@
<?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;
}
}