2008-09-12 09:58:02 +00:00
|
|
|
<?php
|
|
|
|
|
2009-02-07 17:02:13 +00:00
|
|
|
namespace Doctrine\ORM\Internal\Hydration;
|
2009-01-22 19:38:10 +00:00
|
|
|
|
|
|
|
class HydrationException extends \Doctrine\Common\DoctrineException
|
2008-09-12 09:58:02 +00:00
|
|
|
{
|
|
|
|
public static function nonUniqueResult()
|
|
|
|
{
|
|
|
|
return new self("The result returned by the query was not unique.");
|
|
|
|
}
|
2009-02-20 05:46:20 +00:00
|
|
|
}
|