Class BadSessionSecretException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
dev.getelements.elements.sdk.model.exception.BaseException
dev.getelements.elements.sdk.model.exception.InvalidDataException
dev.getelements.elements.sdk.model.exception.security.BadSessionSecretException
- All Implemented Interfaces:
Serializable
Thrown when a bad session secret is provided.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance.BadSessionSecretException(String message) Creates a new instance with the given message.BadSessionSecretException(String message, Object model) Creates a new instance with the given message and model.BadSessionSecretException(String message, Throwable cause) Creates a new instance with the given message and cause.BadSessionSecretException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a new instance.BadSessionSecretException(String message, Throwable cause, Object model) Creates a new instance with the given message, cause and model.Creates a new instance with the given cause.BadSessionSecretException(Throwable cause, Object model) Creates a new instance with the given cause and model. -
Method Summary
Methods inherited from class dev.getelements.elements.sdk.model.exception.InvalidDataException
getCodeMethods inherited from class dev.getelements.elements.sdk.model.exception.BaseException
forceFillInStackTraceMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BadSessionSecretException
public BadSessionSecretException()Creates a new instance. -
BadSessionSecretException
Creates a new instance with the given message.- Parameters:
message- the detail message
-
BadSessionSecretException
Creates a new instance with the given message and model.- Parameters:
message- the detail messagemodel- the invalid model object
-
BadSessionSecretException
Creates a new instance with the given message and cause.- Parameters:
message- the detail messagecause- the cause
-
BadSessionSecretException
Creates a new instance with the given message, cause and model.- Parameters:
message- the detail messagecause- the causemodel- the invalid model object
-
BadSessionSecretException
Creates a new instance with the given cause.- Parameters:
cause- the cause
-
BadSessionSecretException
Creates a new instance with the given cause and model.- Parameters:
cause- the causemodel- the invalid model object
-
BadSessionSecretException
public BadSessionSecretException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a new instance.- Parameters:
message- the detail messagecause- the causeenableSuppression- whether suppression is enabledwritableStackTrace- whether the stack trace is writable
-