Files
fast/addons/epay/library/v3/Yansongda/Pay/Exception/ContainerNotFoundException.php
xiadc c6a4e1f5f6 init
- 框架初始化
 - 安装插件
 - 修复PHP8.4报错
2025-04-19 17:21:20 +08:00

19 lines
424 B
PHP

<?php
declare(strict_types=1);
namespace Yansongda\Pay\Exception;
use Throwable;
class ContainerNotFoundException extends ContainerException
{
/**
* @param mixed $extra
*/
public function __construct(string $message = 'Container Not Found', int $code = self::CONTAINER_NOT_FOUND, $extra = null, Throwable $previous = null)
{
parent::__construct($message, $code, $extra, $previous);
}
}