org.xbib.io.pool.jdbc.PoolEntryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connection-pool-jdbc Show documentation
Show all versions of connection-pool-jdbc Show documentation
JDBC connection pooling for Java 11+
The newest version!
package org.xbib.io.pool.jdbc;
@SuppressWarnings("serial")
public class PoolEntryException extends Exception {
public PoolEntryException(Throwable t) {
super(t);
}
}