gu.sql2java.EmbeddedInitException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql2java-manager Show documentation
Show all versions of sql2java-manager Show documentation
sql2java manager class package for accessing database
package gu.sql2java;
/**
* 封装所有嵌入数据库初始化时抛出异常
* @author guyadong
*
*/
public class EmbeddedInitException extends RuntimeException{
private static final long serialVersionUID = 8477343757120932261L;
public EmbeddedInitException() {
super();
}
public EmbeddedInitException(String message, Throwable cause) {
super(message, cause);
}
public EmbeddedInitException(String message) {
super(message);
}
public EmbeddedInitException(Throwable cause) {
super(cause);
}
}