All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.realm.kotlin.exceptions.RealmException.kt Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 3.0.0
Show newest version
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