Class WriterException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
JAXBMarshalException

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:
  • Constructor Details

    • WriterException

      public WriterException(String s, jakarta.ws.rs.core.Response response)
    • WriterException

      public WriterException(String s, Throwable throwable, jakarta.ws.rs.core.Response response)
    • WriterException

      public WriterException(Throwable throwable, jakarta.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)