gu.sql2java.exception.ObjectRetrievalException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql2java-base Show documentation
Show all versions of sql2java-base Show documentation
sql2java common class package
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);
}
}