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

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

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

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

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

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

    public NoGoodResourcesException()
    {super();}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy