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); } }