1
<?php
2
3
namespace Doctrine\ORM\Tools;
4
5
use Doctrine\ORM\ORMException;
6
7
class ToolsException extends ORMException
8
{
9
public static function couldNotMapDoctrine1Type($type)
10
11
return new self("Could not map doctrine 1 type '$type'!");
12
}
13