vendor/doctrine/lib/Doctrine/ORM/Tools/ToolsException.php
author cavaliet
Wed, 11 Apr 2012 12:07:42 +0200
changeset 86 38ee151428dc
parent 0 7f95f8617b0b
permissions -rwxr-xr-x
remove original label column from all tags list

<?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'!");
    }
}