Package com.linecorp.armeria.server.saml
Class InvalidSamlRequestException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.linecorp.armeria.server.saml.SamlException
com.linecorp.armeria.server.saml.InvalidSamlRequestException
- All Implemented Interfaces:
Serializable
Indicates that a SAML request is not valid.
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates a new exception.InvalidSamlRequestException
(@Nullable String message) Creates a new instance with the specifiedmessage
.InvalidSamlRequestException
(@Nullable String message, @Nullable Throwable cause) Creates a new instance with the specifiedmessage
andcause
.Creates a new instance with the specifiedcause
. -
Method Summary
Methods inherited from class com.linecorp.armeria.server.saml.SamlException
fillInStackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidSamlRequestException
public InvalidSamlRequestException()Creates a new exception. -
InvalidSamlRequestException
Creates a new instance with the specifiedmessage
. -
InvalidSamlRequestException
public InvalidSamlRequestException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause) Creates a new instance with the specifiedmessage
andcause
. -
InvalidSamlRequestException
Creates a new instance with the specifiedcause
.
-