Class HttpAuthenticationException

    • Constructor Detail

      • HttpAuthenticationException

        public HttpAuthenticationException()
        Constructs a new HttpAuthenticationException. The message is left blank (null), and no cause is specified.
      • HttpAuthenticationException

        public HttpAuthenticationException​(String message)
        Constructs a new HttpAuthenticationException. with the message provided, and no cause is specified.
        Parameters:
        message - the message for this HttpAuthenticationException.
      • HttpAuthenticationException

        public HttpAuthenticationException​(Throwable cause)
        Constructs a new HttpAuthenticationException with an initial cause.
        Parameters:
        cause - the cause for this HttpAuthenticationException.
      • HttpAuthenticationException

        public HttpAuthenticationException​(String message,
                                           Throwable cause)
        Constructs a new HttpAuthenticationException with an initial message and cause.
        Parameters:
        message - the message for this HttpAuthenticationException.
        cause - the cause for this HttpAuthenticationException.