Class AuthException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.linecorp.centraldogma.server.auth.AuthException
- All Implemented Interfaces:
Serializable
A
RuntimeException
raised while performing authentication.- See Also:
-
Constructor Summary
ModifierConstructorDescriptionCreates a new instance.AuthException
(String message) Creates a new instance with the specifiedmessage
.AuthException
(String message, Throwable cause) Creates a new instance with the specifiedmessage
andcause
.protected
AuthException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a new instance with the specifiedmessage
,cause
, suppression enabled or disabled, and writable stack trace enabled or disabled.AuthException
(Throwable cause) Creates a new instance with the specifiedcause
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AuthException
public AuthException()Creates a new instance. -
AuthException
Creates a new instance with the specifiedmessage
. -
AuthException
Creates a new instance with the specifiedcause
. -
AuthException
Creates a new instance with the specifiedmessage
andcause
. -
AuthException
protected AuthException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a new instance with the specifiedmessage
,cause
, suppression enabled or disabled, and writable stack trace enabled or disabled.
-