com.mario6.common.db.DataAccessException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-jdbc Show documentation
Show all versions of spring-jdbc Show documentation
一个简单的jdbc封装库,大多数api接口与spring-jdbc类似
The newest version!
package com.mario6.common.db;
/**
* 数据库访问异常类
*/
public class DataAccessException extends RuntimeException{
public DataAccessException(String message, Throwable cause) {
super(message, cause);
}
public DataAccessException(Throwable cause) {
super(cause);
}
public DataAccessException(String message) {
super(message);
}
}