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

gu.sql2java.exception.ObjectRetrievalException Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package gu.sql2java.exception;

/**
 *
 * @author guyadong
 */
public class ObjectRetrievalException extends RuntimeException {

	private static final long serialVersionUID = -6727843698593429999L;

	public ObjectRetrievalException() {
	}

	public ObjectRetrievalException(String reason) {
		super(reason);
	}

	public ObjectRetrievalException(Throwable cause) {
		super(cause);
	}

	public ObjectRetrievalException(String reason, Throwable cause) {
		super(reason, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy