1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/lib/Doctrine/ORM/Tools/Export/ExportException.php

13 lines
376 B
PHP
Raw Normal View History

2010-03-05 19:36:48 +03:00
<?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");
}
}