cn.icuter.jsql.exception.PooledObjectPollTimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsql Show documentation
Show all versions of jsql Show documentation
JDBC framework for writing sql like java programing
package cn.icuter.jsql.exception;
/**
* @author edward
* @since 2018-09-21
*/
public class PooledObjectPollTimeoutException extends JSQLException {
public PooledObjectPollTimeoutException(String message) {
super(message);
}
public PooledObjectPollTimeoutException(String message, Throwable cause) {
super(message, cause);
}
public PooledObjectPollTimeoutException(Throwable cause) {
super(cause);
}
}