You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
253 B
13 lines
253 B
|
14 years ago
|
<?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'!");
|
||
|
|
}
|
||
|
|
}
|