1 | <?php |
||
10 | class DBBaseTableExistCheckException extends DBCheckException |
||
11 | { |
||
12 | const EXCEPTION_NAME = 'DBBaseTableExistCheck'; |
||
13 | |||
14 | const CODE_TABLE_DONT_EXIST = 2002; |
||
15 | const TEXT_TABLE_DONT_EXIST = 'Table: %s don\'t exist into db'; |
||
16 | |||
17 | /** |
||
18 | * @param string $tableName |
||
19 | * |
||
20 | * @return self |
||
21 | */ |
||
22 | 1 | public static function tableDoesNotExist($tableName) |
|
26 | } |
||
27 |