Class ClientConnectionSecuritySaslException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ClientConnectionSecuritySaslException
    extends ClientConnectionSecurityException
    Security Exception used to indicate a security violation has occurred.
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean isSysTempFailure()  
      • 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

      • ClientConnectionSecuritySaslException

        public ClientConnectionSecuritySaslException​(java.lang.String message)
        Create a new instance of the connection SASL security exception
        Parameters:
        message - The message that describes the error.
      • ClientConnectionSecuritySaslException

        public ClientConnectionSecuritySaslException​(java.lang.String message,
                                                     java.lang.Throwable cause)
        Create a new instance of the connection SASL security exception
        Parameters:
        message - The message that describes the error.
        cause - The exception that initiated this error.
      • ClientConnectionSecuritySaslException

        public ClientConnectionSecuritySaslException​(java.lang.String message,
                                                     boolean temporary)
        Create a new instance of the connection SASL security exception
        Parameters:
        message - The message that describes the error.
        temporary - Boolean that indicates if the error is a temporary (true) or permanent error (false).
      • ClientConnectionSecuritySaslException

        public ClientConnectionSecuritySaslException​(java.lang.String message,
                                                     boolean temporary,
                                                     java.lang.Throwable cause)
        Create a new instance of the connection SASL security exception
        Parameters:
        message - The message that describes the error.
        temporary - Boolean that indicates if the error is a temporary (true) or permanent error (false).
        cause - The exception that initiated this error.
    • Method Detail

      • isSysTempFailure

        public boolean isSysTempFailure()
        Returns:
        true if the error is temporary and reconnection may be possible.