This class represents an error that has occurred when using SASL.
This class represents an error that has occurred when using SASL.
(->sasl-exception)
(->sasl-exception detail)
(->sasl-exception detail ex)
Constructor.
Constructs a new instance of SaslException with a detailed message and a root exception. For example, a SaslException might result from a problem with the callback handler, which might throw a NoSuchCallbackException if it does not support the requested callback, or throw an IOException if it had problems obtaining data for the callback. The SaslException's root exception would be then be the exception thrown by the callback handler.
detail - A possibly null string containing details of the exception. - java.lang.String
ex - A possibly null root exception that caused this exception. - java.lang.Throwable
Constructor. Constructs a new instance of SaslException with a detailed message and a root exception. For example, a SaslException might result from a problem with the callback handler, which might throw a NoSuchCallbackException if it does not support the requested callback, or throw an IOException if it had problems obtaining data for the callback. The SaslException's root exception would be then be the exception thrown by the callback handler. detail - A possibly null string containing details of the exception. - `java.lang.String` ex - A possibly null root exception that caused this exception. - `java.lang.Throwable`
(get-cause this)
Description copied from class: Throwable
returns: the cause of this throwable or null if the
cause is nonexistent or unknown. - java.lang.Throwable
Description copied from class: Throwable returns: the cause of this throwable or null if the cause is nonexistent or unknown. - `java.lang.Throwable`
(init-cause this cause)
Description copied from class: Throwable
cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.) - java.lang.Throwable
returns: a reference to this Throwable instance. - java.lang.Throwable
Description copied from class: Throwable cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.) - `java.lang.Throwable` returns: a reference to this Throwable instance. - `java.lang.Throwable`
(to-string this)
Returns the string representation of this exception. The string representation contains this exception's class name, its detailed message, and if it has a root exception, the string representation of the root exception. This string representation is meant for debugging and not meant to be interpreted programmatically.
returns: The non-null string representation of this exception. - java.lang.String
Returns the string representation of this exception. The string representation contains this exception's class name, its detailed message, and if it has a root exception, the string representation of the root exception. This string representation is meant for debugging and not meant to be interpreted programmatically. returns: The non-null string representation of this exception. - `java.lang.String`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close