mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 22:02:22 +08:00
40 lines
1019 B
PHP
40 lines
1019 B
PHP
|
<?php
|
||
|
|
||
|
namespace Doctrine\DBAL\Query;
|
||
|
|
||
|
use Doctrine\DBAL\Exception;
|
||
|
|
||
|
use function implode;
|
||
|
|
||
|
/**
|
||
|
* @psalm-immutable
|
||
|
*/
|
||
|
class QueryException extends Exception
|
||
|
{
|
||
|
/**
|
||
|
* @param string $alias
|
||
|
* @param string[] $registeredAliases
|
||
|
*
|
||
|
* @return QueryException
|
||
|
*/
|
||
|
public static function unknownAlias($alias, $registeredAliases)
|
||
|
{
|
||
|
return new self("The given alias '" . $alias . "' is not part of " .
|
||
|
'any FROM or JOIN clause table. The currently registered ' .
|
||
|
'aliases are: ' . implode(', ', $registeredAliases) . '.');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $alias
|
||
|
* @param string[] $registeredAliases
|
||
|
*
|
||
|
* @return QueryException
|
||
|
*/
|
||
|
public static function nonUniqueAlias($alias, $registeredAliases)
|
||
|
{
|
||
|
return new self("The given alias '" . $alias . "' is not unique " .
|
||
|
'in FROM and JOIN clause table. The currently registered ' .
|
||
|
'aliases are: ' . implode(', ', $registeredAliases) . '.');
|
||
|
}
|
||
|
}
|