Activation Error Reason
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
Link copied to clipboard
data class LicenseTokenExpired(val message: String) : DittoError.ActivationErrorReason
Content copied to clipboard
The provided license token has expired.
Link copied to clipboard
data class LicenseTokenUnsupportedFutureVersion(val message: String) : DittoError.ActivationErrorReason
Content copied to clipboard
The provided license token is in an unsupported future format.
Link copied to clipboard
data class LicenseTokenVerificationFailed(val message: String) : DittoError.ActivationErrorReason
Content copied to clipboard
Verification of the provided license token failed.
Link copied to clipboard
data class NotActivatedError(val 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
.