commonMain.keep.exceptions.CacheException.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
sealed class CacheException(
open val key: String,
message: String,
cause: Throwable? = null
) : RuntimeException(message, cause)