package org.theonefx.wcframework.jdbc.exception;
import org.theonefx.wcframework.core.exception.GeneratedException;
/**
* @Package org.theonefx.wcframework.jdbc.exception
* @ClassName: DataAccessException
* @author 陈曦
* @date 2010-10-08 19:41:02
* @Description: 数据访问异常
*/
public class DataAccessException extends GeneratedException {
private static final long serialVersionUID = 1700218864356893297L;
public DataAccessException(String msg) {
super(msg);
}
public DataAccessException(String msg, Throwable cause) {
super(msg, cause);
}
}