<?php
declare(strict_types=1);
namespace DoctrineDBALDriverAbstractSQLServerDriverException;
use DoctrineDBALDriverAbstractException;
/** @internal */
final class PortWithoutHost extends AbstractException
{
public static function new(): self
{
return new self('Connection port specified without the host');
}
}