deepseektest/addons/epay/library/v3/Yansongda/Pay/Exception/InvalidConfigException.php

19 lines
397 B
PHP
Raw Normal View History

2025-02-28 09:29:43 +08:00
<?php
declare(strict_types=1);
namespace Yansongda\Pay\Exception;
use Throwable;
class InvalidConfigException extends Exception
{
/**
* @param mixed $extra
*/
public function __construct(int $code = self::CONFIG_ERROR, string $message = 'Config Error', $extra = null, Throwable $previous = null)
{
parent::__construct($message, $code, $extra, $previous);
}
}