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
|
|
|
|
|
|
|
class HydrationException extends \Doctrine\Common\DoctrineException
|
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-02-20 08:46:20 +03:00
|
|
|
}
|