Class ResteasyWebApplicationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jakarta.ws.rs.WebApplicationException
-
- org.jboss.resteasy.client.exception.ResteasyWebApplicationException
-
- All Implemented Interfaces:
Serializable,WebApplicationExceptionWrapper<WebApplicationException>
public class ResteasyWebApplicationException extends WebApplicationException implements WebApplicationExceptionWrapper<WebApplicationException>
Wraps aWebApplicationExceptionwith a sanitized response.- Author:
- James R. Perkins
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResteasyWebApplicationException(WebApplicationException wrapped)Creates a new exception based on the wrapped exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WebApplicationExceptionunwrap()Returns the original, unwrapped, exception.-
Methods inherited from class jakarta.ws.rs.WebApplicationException
getResponse
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ResteasyWebApplicationException
public ResteasyWebApplicationException(WebApplicationException wrapped)
Creates a new exception based on the wrapped exception. The response will be sanitized.- Parameters:
wrapped- the exception to wrap
-
-
Method Detail
-
unwrap
public WebApplicationException unwrap()
Description copied from interface:WebApplicationExceptionWrapperReturns the original, unwrapped, exception.- Specified by:
unwrapin interfaceWebApplicationExceptionWrapper<WebApplicationException>- Returns:
- the original exception
-
-