Activation Error Reason
sealed class ActivationErrorReason
Content copied to clipboard
The possible underlying reasons an .activationError
error occurs.
NotActivatedError: The
Ditto
instance has not yet been activated, which is achieved via a successful call tosetLicenseToken
.LicenseTokenExpired: The provided license token has expired.
LicenseTokenVerificationFailed: Verification of the provided license token failed.
LicenseTokenUnsupportedFutureVersion: The provided license token is in an unsupported future format.
Types
License Token Expired
Link copied to clipboard
data class LicenseTokenExpired(message: String) : DittoError.ActivationErrorReason
Content copied to clipboard
The provided license token has expired.
License Token Unsupported Future Version
Link copied to clipboard
data class LicenseTokenUnsupportedFutureVersion(message: String) : DittoError.ActivationErrorReason
Content copied to clipboard
The provided license token is in an unsupported future format.
License Token Verification Failed
Link copied to clipboard
data class LicenseTokenVerificationFailed(message: String) : DittoError.ActivationErrorReason
Content copied to clipboard
Verification of the provided license token failed.
Not Activated Error
Link copied to clipboard
data class NotActivatedError(message: String) : DittoError.ActivationErrorReason
Content copied to clipboard
The Ditto
instance has not yet been activated, which is achieved via a successful call to setLicenseToken
.
Inheritors
DittoError.ActivationErrorReason
Link copied to clipboard
DittoError.ActivationErrorReason
Link copied to clipboard
DittoError.ActivationErrorReason
Link copied to clipboard
DittoError.ActivationErrorReason
Link copied to clipboard