Package org.wildfly.security.sasl
Class SaslAuthenticationInterruptedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
javax.security.sasl.SaslException
org.wildfly.security.sasl.SaslAuthenticationInterruptedException
- All Implemented Interfaces:
Serializable
- Author:
- David M. Lloyd
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newSaslAuthenticationInterruptedExceptioninstance.Constructs a newSaslAuthenticationInterruptedExceptioninstance with an initial message.SaslAuthenticationInterruptedException(String msg, Throwable cause) Constructs a newSaslAuthenticationInterruptedExceptioninstance with an initial message and cause.Constructs a newSaslAuthenticationInterruptedExceptioninstance with an initial cause. -
Method Summary
Methods inherited from class javax.security.sasl.SaslException
getCause, initCause, toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
SaslAuthenticationInterruptedException
public SaslAuthenticationInterruptedException()Constructs a newSaslAuthenticationInterruptedExceptioninstance. The message is left blank (null), and no cause is specified. -
SaslAuthenticationInterruptedException
Constructs a newSaslAuthenticationInterruptedExceptioninstance with an initial message. No cause is specified.- Parameters:
msg- the message
-
SaslAuthenticationInterruptedException
Constructs a newSaslAuthenticationInterruptedExceptioninstance with an initial cause. If a non-nullcause is specified, its message is used to initialize the message of thisSaslAuthenticationInterruptedException; otherwise the message is left blank (null).- Parameters:
cause- the cause
-
SaslAuthenticationInterruptedException
Constructs a newSaslAuthenticationInterruptedExceptioninstance with an initial message and cause.- Parameters:
msg- the messagecause- the cause
-