All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gu.sql2java.EmbeddedInitException Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
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);
		
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy