RealmException

open class RealmException : RuntimeException

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.

Constructors

RealmException
Link copied to clipboard
fun RealmException()
RealmException
Link copied to clipboard
fun RealmException(message: String)
RealmException
Link copied to clipboard
fun RealmException(message: String, cause: Throwable)
RealmException
Link copied to clipboard
fun RealmException(cause: Throwable)

Properties

cause
Link copied to clipboard
open val cause: Throwable?
message
Link copied to clipboard
open val message: String?