123456789101112131415161718192021 |
- <?php
- namespace Qii\Exceptions;
- if (class_exists('\Qii\Exceptions\TableException', false)) {
- return;
- }
- class TableException extends Errors
- {
- const VERSION = '1.2';
- /**
- * 显示错误
- *
- * @param Object $e Exception
- */
- public static function getError($e)
- {
- }
- }
|