1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.walker.db;
|
| /**
| * 数据库操作异常定义
| * @author shikeying
| * @date 2015年12月17日
| *
| */
| public class DatabaseException extends Exception {
|
| /**
| *
| */
| private static final long serialVersionUID = 489303010179202574L;
|
| public DatabaseException(String msg){
| super(msg);
| }
|
| public DatabaseException(String msg, Throwable cause){
| super(msg, cause);
| }
| }
|
|