org.jboss.resteasy.spi
Class WriterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.jboss.resteasy.spi.Failure
org.jboss.resteasy.spi.LoggableFailure
org.jboss.resteasy.spi.WriterException
- All Implemented Interfaces:
- Serializable
public class WriterException
- extends LoggableFailure
Any exception thrown by a MessageBodyWriter chain that is not an instance of a WriterException is caught internally
by the Resteasy runtime and wrapped with an instance of WriterException.
If you want to have special exception handling for exceptions thrown by MessageBodyWriters and their interceptors, then write an exception
mapper for WriterException.
Also, you may extend this class and throw instances of it from your MessageBodyWriters (and interceptors)
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
- See Also:
- Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
WriterException
public WriterException(String s,
javax.ws.rs.core.Response response)
WriterException
public WriterException(String s,
Throwable throwable,
javax.ws.rs.core.Response response)
WriterException
public WriterException(Throwable throwable,
javax.ws.rs.core.Response response)
WriterException
public WriterException(String s,
Throwable throwable)
WriterException
public WriterException(Throwable throwable)
WriterException
public WriterException(String s)
WriterException
public WriterException(int errorCode)
WriterException
public WriterException(String s,
int errorCode)
WriterException
public WriterException(String s,
Throwable throwable,
int errorCode)
WriterException
public WriterException(Throwable throwable,
int errorCode)
Copyright © 2013 JBoss by Red Hat. All Rights Reserved.