<?php
declare(strict_types=1);
namespace DoctrineDBALSchemaException;
use DoctrineDBALSchemaSchemaException;
use function sprintf;
final class InvalidTableName extends SchemaException
{
public static function new(string $tableName): self
{
return new self(sprintf('Invalid table name specified "%s".', $tableName));
}
}