gu.sql2java.exception.QueueTimeoutException 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
* @since 3.15.4
*/
public class QueueTimeoutException extends RuntimeException {
private static final long serialVersionUID = -3348344706936343620L;
public QueueTimeoutException() {
super();
}
public QueueTimeoutException(String message, Throwable cause) {
super(message, cause);
}
public QueueTimeoutException(String message) {
super(message);
}
public QueueTimeoutException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy