gu.sql2java.exception.ResultSetCodecException 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;
/**
* ResultSetCodec 编解码异常
* @author guyadong
* @since 3.21.0
*/
public class ResultSetCodecException extends RuntimeException {
private static final long serialVersionUID = 8958914553382208876L;
public ResultSetCodecException() {
}
public ResultSetCodecException(String message) {
super(message);
}
public ResultSetCodecException(Throwable cause) {
super(cause);
}
public ResultSetCodecException(String message, Throwable cause) {
super(message, cause);
}
}