commonMain.keep.exceptions.CacheMissException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keep-api Show documentation
Show all versions of keep-api Show documentation
An API to help caching simple objects
package keep.exceptions
open class CacheMissException(key: String, cause: Throwable? = null) : CacheLoadException(key, cause = cause)