1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/lib/Doctrine/ORM/Tools/ToolsException.php
2010-03-05 16:36:48 +00:00

9 lines
217 B
PHP

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