1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/lib/Doctrine/ORM/Tools/ToolsException.php
2010-04-14 20:42:39 -04:00

13 lines
253 B
PHP

<?php
namespace Doctrine\ORM\Tools;
use Doctrine\ORM\ORMException;
class ToolsException extends ORMException
{
public static function couldNotMapDoctrine1Type($type)
{
return new self("Could not map doctrine 1 type '$type'!");
}
}