Class AuthenticationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.confluent.security.authentication.AuthenticationException
All Implemented Interfaces:
Serializable

public class AuthenticationException extends RuntimeException
See Also:
  • Field Details

  • Constructor Details

    • AuthenticationException

      @Deprecated public AuthenticationException(String msg)
      Deprecated.
      Creates a new AuthenticationException with the given message.
      Parameters:
      msg - the error message
    • AuthenticationException

      @Deprecated public AuthenticationException(String msg, Throwable cause)
      Deprecated.
      Creates a new AuthenticationException with the given message and cause.
      Parameters:
      msg - the error message
      cause - the cause of the error
    • AuthenticationException

      public AuthenticationException(String msg, String reasonCode)
      Creates a new AuthenticationException with the given message.
      Parameters:
      msg - the error message
      reasonCode - a static string describing the error. Could be used for indexing or metrics. Default value is AUTHENTICATION_EXCEPTION_OCCURRED.
    • AuthenticationException

      public AuthenticationException(String msg, Throwable cause, String reasonCode)
      Creates a new AuthenticationException with the given message and cause.
      Parameters:
      msg - the error message
      cause - the cause of the error
      reasonCode - a static string describing the error. Could be used for indexing or metrics. Default value is AUTHENTICATION_EXCEPTION_OCCURRED.
  • Method Details