org.xbib.io.pool.jdbc.PoolInitializationException 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 PoolInitializationException extends RuntimeException {
/**
* Construct an exception, possibly wrapping the provided Throwable as the cause.
*
* @param t the Throwable to wrap
*/
public PoolInitializationException(Throwable t) {
super("Failed to initialize pool: " + t.getMessage(), t);
}
}