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

org.jboss.resteasy.spi.UnhandledException Maven / Gradle / Ivy

There is a newer version: 4.0.0.Beta5
Show newest version
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); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy