org.jboss.resteasy.spi.UnhandledException Maven / Gradle / Ivy
package org.jboss.resteasy.spi;
/**
* This exception should only be used by Resteasy integrators. Applications code should use WebApplicationException
*
* Thrown by dispatcher when it can't handle a particular exception
*
* @author Bill Burke
* @version $Revision: 1 $
*/
public class UnhandledException extends RuntimeException
{
public UnhandledException(final String s, final Throwable throwable)
{
super(s, throwable);
}
public UnhandledException(final Throwable throwable)
{
super(throwable);
}
}