Added in API level 23

KeyExpiredException

open class KeyExpiredException : InvalidKeyException
kotlin.Any
   ↳ kotlin.Throwable
   ↳ java.lang.Exception
   ↳ java.security.GeneralSecurityException
   ↳ java.security.KeyException
   ↳ java.security.InvalidKeyException
   ↳ android.security.keystore.KeyExpiredException

Indicates that a cryptographic operation failed because the employed key's validity end date is in the past.

Summary

Public constructors

Constructs a new KeyExpiredException without detail message and cause.

Constructs a new KeyExpiredException with the provided detail message and no cause.

KeyExpiredException(message: String!, cause: Throwable!)

Constructs a new KeyExpiredException with the provided detail message and cause.

Public constructors

KeyExpiredException

Added in API level 23
KeyExpiredException()

Constructs a new KeyExpiredException without detail message and cause.

KeyExpiredException

Added in API level 23
KeyExpiredException(message: String!)

Constructs a new KeyExpiredException with the provided detail message and no cause.

KeyExpiredException

Added in API level 23
KeyExpiredException(
    message: String!,
    cause: Throwable!)

Constructs a new KeyExpiredException with the provided detail message and cause.