Class ResponseAuthenticationException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ResponseAuthenticationException
    extends javax.ws.rs.client.ResponseProcessingException
    Exception thrown by security response authentication.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ResponseAuthenticationException​(javax.ws.rs.core.Response response, java.lang.String message)
      Creates new instance of this exception with exception message.
      ResponseAuthenticationException​(javax.ws.rs.core.Response response, java.lang.String message, java.lang.Throwable cause)
      Creates new instance of this exception with exception message and exception cause.
      ResponseAuthenticationException​(javax.ws.rs.core.Response response, java.lang.Throwable cause)
      Creates new instance of this exception with exception cause.
    • Method Summary

      • Methods inherited from class javax.ws.rs.client.ResponseProcessingException

        getResponse
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ResponseAuthenticationException

        public ResponseAuthenticationException​(javax.ws.rs.core.Response response,
                                               java.lang.Throwable cause)
        Creates new instance of this exception with exception cause.
        Parameters:
        response - the response instance for which the processing failed.
        cause - Exception cause.
      • ResponseAuthenticationException

        public ResponseAuthenticationException​(javax.ws.rs.core.Response response,
                                               java.lang.String message)
        Creates new instance of this exception with exception message.
        Parameters:
        response - the response instance for which the processing failed.
        message - Exception message.
      • ResponseAuthenticationException

        public ResponseAuthenticationException​(javax.ws.rs.core.Response response,
                                               java.lang.String message,
                                               java.lang.Throwable cause)
        Creates new instance of this exception with exception message and exception cause.
        Parameters:
        response - the response instance for which the processing failed.
        message - Exception message.
        cause - Exception cause.