HydrationException.php 256 Bytes
Newer Older
romanb's avatar
romanb committed
1 2
<?php

3
namespace Doctrine\ORM\Internal\Hydration;
4 5

class HydrationException extends \Doctrine\Common\DoctrineException
romanb's avatar
romanb committed
6 7 8 9 10
{
    public static function nonUniqueResult()
    {
        return new self("The result returned by the query was not unique.");
    }
11
}