com.mchange.v2.resourcepool.ResourcePoolException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.c3p0
Show all versions of org.apache.servicemix.bundles.c3p0
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
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();}
}