commonMain.io.realm.kotlin.exceptions.RealmException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of library-base-jvm Show documentation
Show all versions of library-base-jvm Show documentation
Library code for Realm Kotlin. This artifact is not supposed to be consumed directly, but through 'io.realm.kotlin:gradle-plugin:1.11.1' instead.
package io.realm.kotlin.exceptions
/**
* Top level class for all exceptions that are Realm specific and doesn't have a better
* existing platform exception like [IllegalArgumentException] or [IllegalStateException].
*
* In most cases, a subclass of this type will be thrown. Exactly which, will will be documented by
* the individual API entry points.
*/
public open class RealmException : RuntimeException {
public constructor() : super()
public constructor(message: String?) : super(message)
public constructor(message: String?, cause: Throwable?) : super(message, cause)
public constructor(cause: Throwable?) : super(cause)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy