Class ReaderException

  • All Implemented Interfaces:
    Serializable
    Direct Known Subclasses:
    JAXBUnmarshalException, UnauthorizedSignatureException

    public class ReaderException
    extends Failure
    Any exception thrown by a MessageBodyReader chain that is not an instance of a ReaderException is caught internally by the Resteasy runtime and wrapped with an instance of ReaderException. If you want to have special exception handling for exceptions thrown by MessageBodyReaders, then write an exception mapper for ReaderException. Also, you may extend this class and throw instances of it from your MessageBodyReaders (and interceptors)
    Version:
    $Revision: 1 $
    Author:
    Bill Burke
    See Also:
    Serialized Form
    • Constructor Detail

      • ReaderException

        public ReaderException​(String s,
                               javax.ws.rs.core.Response response)
      • ReaderException

        public ReaderException​(String s,
                               Throwable throwable,
                               javax.ws.rs.core.Response response)
      • ReaderException

        public ReaderException​(Throwable throwable,
                               javax.ws.rs.core.Response response)
      • ReaderException

        public ReaderException​(String s,
                               Throwable throwable)
      • ReaderException

        public ReaderException​(Throwable throwable)
      • ReaderException

        public ReaderException​(String s)
      • ReaderException

        public ReaderException​(int errorCode)
      • ReaderException

        public ReaderException​(String s,
                               int errorCode)
      • ReaderException

        public ReaderException​(String s,
                               Throwable throwable,
                               int errorCode)
      • ReaderException

        public ReaderException​(Throwable throwable,
                               int errorCode)