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