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."
|
|
|
|
);
|
|
|
|
}
|
2009-02-20 08:46:20 +03:00
|
|
|
}
|