BadRealmExceptionpublic class BadRealmException extends Exception Exception thrown when a Realm is found to be corrupted for some reason.
This usually reflects some sort of problem with data structures such
as those holding information about users, groups, or ACLs. |
Constructors Summary |
---|
public BadRealmException(String info)Constructs the exception, with descriptive information. super (info);
| public BadRealmException()
super();
| public BadRealmException(Throwable cause)
super(cause);
| public BadRealmException(String info, Throwable cause)
super(info, cause);
|
|