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