1
0
mirror of synced 2025-03-02 02:43:20 +03:00
2008-09-12 09:58:02 +00:00

13 lines
252 B
PHP

<?php
class Doctrine_ORM_Exceptions_HydrationException extends Doctrine_ORM_Exceptions_ORMException
{
public static function nonUniqueResult()
{
return new self("The result returned by the query was not unique.");
}
}
?>