Package com.linecorp.armeria.server.saml
Class SamlException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.linecorp.armeria.server.saml.SamlException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InvalidSamlRequestException
Indicates that an error occurred while processing a SAML request.
- See Also:
-
Constructor Summary
ModifierConstructorDescriptionCreates a new exception.SamlException
(@Nullable String message) Creates a new instance with the specifiedmessage
.SamlException
(@Nullable String message, @Nullable Throwable cause) Creates a new instance with the specifiedmessage
andcause
.protected
SamlException
(@Nullable String message, @Nullable 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.SamlException
(@Nullable Throwable cause) Creates a new instance with the specifiedcause
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SamlException
public SamlException()Creates a new exception. -
SamlException
Creates a new instance with the specifiedmessage
. -
SamlException
Creates a new instance with the specifiedmessage
andcause
. -
SamlException
Creates a new instance with the specifiedcause
. -
SamlException
protected SamlException(@Nullable @Nullable String message, @Nullable @Nullable 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.
-
-
Method Details
-
fillInStackTrace
- Overrides:
fillInStackTrace
in classThrowable
-