13 lines
376 B
PHP
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");
|
||
|
}
|
||
|
}
|