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

com.mchange.v2.resourcepool.ResourcePoolException Maven / Gradle / Ivy

There is a newer version: 0.9.5.5_1
Show newest version
package com.mchange.v2.resourcepool;

import com.mchange.lang.PotentiallySecondaryException;

public class ResourcePoolException extends PotentiallySecondaryException
{
    public ResourcePoolException(String msg, Throwable t)
    {super(msg, t);}

    public ResourcePoolException(Throwable t)
    {super(t);}

    public ResourcePoolException(String msg)
    {super(msg);}

    public ResourcePoolException()
    {super();}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy