All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xbib.io.pool.jdbc.PoolInitializationException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy