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
public class SamlException extends RuntimeException
Indicates that an error occurred while processing a SAML request.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Modifier Constructor Description SamlException()
Creates a new exception.SamlException(String message)
Creates a new instance with the specifiedmessage
.SamlException(String message, Throwable cause)
Creates a new instance with the specifiedmessage
andcause
.protected
SamlException(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.SamlException(Throwable cause)
Creates a new instance with the specifiedcause
. -
Method Summary
Modifier and Type Method Description Throwable
fillInStackTrace()
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 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.
-
-
Method Details
-
fillInStackTrace
- Overrides:
fillInStackTrace
in classThrowable
-