online.sanen.unabo.template.DataAccessException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unabo Show documentation
Show all versions of unabo Show documentation
Unabo, the Java™ progressive ORM framework
package online.sanen.unabo.template;
/**
*
* @author LazyToShow
* Date: 2018年10月14日
* Time: 下午2:21:38
*/
public class DataAccessException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Constructor for DataAccessException.
* @param msg the detail message
*/
public DataAccessException(String msg) {
super(msg);
}
/**
* Constructor for DataAccessException.
* @param msg the detail message
* @param cause the root cause (usually from using a underlying
* data access API such as JDBC)
*/
public DataAccessException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy