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

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

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

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

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

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

    public TimeoutException()
    {super();}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy