20 lines
470 B
PHP
Raw Normal View History

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