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:
    Serialized Form
    • Constructor Detail

      • 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)