ActivationErrorReason

sealed class ActivationErrorReason

The possible underlying reasons an .activationError error occurs.

  • NotActivatedError: The Ditto instance has not yet been activated, which is achieved via a successful call to setLicenseToken.

  • 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

The provided license token has expired.

Link copied to clipboard
data class LicenseTokenUnsupportedFutureVersion(val message: String) : DittoError.ActivationErrorReason

The provided license token is in an unsupported future format.

Link copied to clipboard
data class LicenseTokenVerificationFailed(val message: String) : DittoError.ActivationErrorReason

Verification of the provided license token failed.

Link copied to clipboard
data class NotActivatedError(val message: String) : DittoError.ActivationErrorReason

The Ditto instance has not yet been activated, which is achieved via a successful call to setLicenseToken.

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard