Serializable
AuthenticationException
public class SaslException extends IOException
Constructor | Description |
---|---|
SaslException() |
Constructs a new instance of SaslException . |
SaslException |
Constructs a new instance of SaslException with a detailed message. |
SaslException |
Constructs a new instance of SaslException with a detailed message and a root exception. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
public SaslException()
SaslException
. The root exception and the detailed message are null.public SaslException(String detail)
SaslException
with a detailed message. The root exception is null.detail
- A possibly null string containing details of the exception.public SaslException(String detail, Throwable ex)
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.ex
- A possibly null root exception that caused this exception.public String toString()
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.security.sasl/javax/security/sasl/SaslException.html