1
0
mirror of synced 2024-12-15 07:36:03 +03:00
doctrine2/lib/Doctrine/ORM/Tools/Export/ExportException.php
2010-03-05 16:36:48 +00:00

13 lines
376 B
PHP

<?php
namespace Doctrine\ORM\Tools\Export;
class ExportException extends ORMException {
public static function invalidExporterDriverType($type) {
return new self("The specified export driver '$type' does not exist");
}
public static function invalidMappingDriverType($type) {
return new self("The mapping driver '$type' does not exist");
}
}