File "DatabaseRequired.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/doctrine/dbal/src/Exception/DatabaseRequired.php
File size: 353 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Exception;
use Doctrine\DBAL\Exception;
use function sprintf;
/** @psalm-immutable */
class DatabaseRequired extends Exception
{
public static function new(string $methodName): self
{
return new self(sprintf('A database is required for the method: %s.', $methodName));
}
}