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