public class AuthenticationException extends IOException
Constructor and Description |
---|
AuthenticationException()
Constructs a new
org.wildfly.security.auth.AuthenticationException instance. |
AuthenticationException(String msg)
Constructs a new
org.wildfly.security.auth.AuthenticationException instance with an initial message. |
AuthenticationException(String msg,
Throwable cause)
Constructs a new
org.wildfly.security.auth.AuthenticationException instance with an initial message and
cause. |
AuthenticationException(Throwable cause)
Constructs a new
org.wildfly.security.auth.AuthenticationException instance with an initial cause. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public AuthenticationException()
org.wildfly.security.auth.AuthenticationException
instance. The message is left blank
(null
), and no cause is specified.public AuthenticationException(String msg)
org.wildfly.security.auth.AuthenticationException
instance with an initial message. No
cause is specified.msg
- the messagepublic AuthenticationException(Throwable cause)
org.wildfly.security.auth.AuthenticationException
instance with an initial cause. If a
non-null
cause is specified, its message is used to initialize the message of this org.wildfly.security.auth.AuthenticationException
; otherwise the message is left blank (null
).cause
- the causeCopyright © 2020 JBoss by Red Hat. All rights reserved.