1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.walker.db;
|
| public class DatabaseExistException extends DatabaseException {
|
| /**
| *
| */
| private static final long serialVersionUID = 4543839271298075084L;
|
| public DatabaseExistException(String db) {
| super("数据库已经存在");
| }
|
| // public DatabaseExistException(String msg) {
| // super(msg);
| // }
|
| public DatabaseExistException(String msg, Throwable cause) {
| super(msg, cause);
| }
|
| }
|
|