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
public class SaslAuthenticationInterruptedException extends SaslException
- Author:
- David M. Lloyd
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description SaslAuthenticationInterruptedException()
Constructs a newSaslAuthenticationInterruptedException
instance.SaslAuthenticationInterruptedException(String msg)
Constructs a newSaslAuthenticationInterruptedException
instance with an initial message.SaslAuthenticationInterruptedException(String msg, Throwable cause)
Constructs a newSaslAuthenticationInterruptedException
instance with an initial message and cause.SaslAuthenticationInterruptedException(Throwable cause)
Constructs a newSaslAuthenticationInterruptedException
instance with an initial cause.
-
Method Summary
-
Methods inherited from class javax.security.sasl.SaslException
getCause, initCause, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SaslAuthenticationInterruptedException
public SaslAuthenticationInterruptedException()
Constructs a newSaslAuthenticationInterruptedException
instance. The message is left blank (null
), and no cause is specified.
-
SaslAuthenticationInterruptedException
public SaslAuthenticationInterruptedException(String msg)
Constructs a newSaslAuthenticationInterruptedException
instance with an initial message. No cause is specified.- Parameters:
msg
- the message
-
SaslAuthenticationInterruptedException
public SaslAuthenticationInterruptedException(Throwable cause)
Constructs a newSaslAuthenticationInterruptedException
instance with an initial cause. If a non-null
cause is specified, its message is used to initialize the message of thisSaslAuthenticationInterruptedException
; otherwise the message is left blank (null
).- Parameters:
cause
- the cause
-
-