2008-09-12 13:58:02 +04:00
|
|
|
<?php
|
|
|
|
|
2009-02-07 20:02:13 +03:00
|
|
|
namespace Doctrine\ORM\Internal\Hydration;
|
2009-01-22 22:38:10 +03:00
|
|
|
|
2010-02-09 20:13:49 +03:00
|
|
|
class HydrationException extends \Doctrine\ORM\ORMException
|
2008-09-12 13:58:02 +04:00
|
|
|
{
|
|
|
|
public static function nonUniqueResult()
|
|
|
|
{
|
|
|
|
return new self("The result returned by the query was not unique.");
|
|
|
|
}
|
2011-11-01 02:35:41 +04:00
|
|
|
|
2009-08-28 14:48:40 +04:00
|
|
|
public static function parentObjectOfRelationNotFound($alias, $parentAlias)
|
|
|
|
{
|
|
|
|
return new self("The parent object of entity result with alias '$alias' was not found."
|
|
|
|
. " The parent alias is '$parentAlias'.");
|
|
|
|
}
|
2011-11-01 02:35:41 +04:00
|
|
|
|
|
|
|
public static function emptyDiscriminatorValue($dqlAlias)
|
|
|
|
{
|
|
|
|
return new self("The DQL alias '" . $dqlAlias . "' contains an entity ".
|
|
|
|
"of an inheritance hierachy with an empty discriminator value. This means " .
|
|
|
|
"that the database contains inconsistent data with an empty " .
|
|
|
|
"discriminator value in a table row."
|
|
|
|
);
|
|
|
|
}
|
2012-03-16 04:29:07 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 2.3
|
|
|
|
* @param string $entityName
|
|
|
|
* @param string $discrColumnName
|
|
|
|
* @param string $dqlAlias
|
|
|
|
* @return HydrationException
|
|
|
|
*/
|
|
|
|
public static function missingDiscriminatorColumn($entityName, $discrColumnName, $dqlAlias)
|
|
|
|
{
|
2012-03-16 05:38:54 +04:00
|
|
|
return new self(sprintf(
|
|
|
|
'The discriminator column "%s" is missing for "%s" using the DQL alias "%s".',
|
|
|
|
$discrColumnName, $entityName, $dqlAlias
|
|
|
|
));
|
2012-03-16 04:29:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 2.3
|
|
|
|
* @param string $entityName
|
|
|
|
* @param string $discrColumnName
|
|
|
|
* @param string $dqlAlias
|
|
|
|
* @return HydrationException
|
|
|
|
*/
|
|
|
|
public static function missingDiscriminatorMetaMappingColumn($entityName, $discrColumnName, $dqlAlias)
|
|
|
|
{
|
2012-03-16 05:38:54 +04:00
|
|
|
return new self(sprintf(
|
|
|
|
'The meta mapping for the discriminator column "%s" is missing for "%s" using the DQL alias "%s".',
|
|
|
|
$discrColumnName, $entityName, $dqlAlias
|
|
|
|
));
|
2012-03-16 04:29:07 +04:00
|
|
|
}
|
2009-02-20 08:46:20 +03:00
|
|
|
}
|