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

org.gawst.asyncdb.InvalidDbEntry Maven / Gradle / Ivy

Go to download

A set of helper class to keep a copy of small SQLite databases in memory in Android

There is a newer version: 3.1.1
Show newest version
package org.gawst.asyncdb;

import android.support.annotation.NonNull;

/**
 * Exception to indicate a DB entry is no longer valid/usable, it should be removed from the DB
 *
 * @author Created by Steve Lhomme on 05/01/2015.
 */
public class InvalidDbEntry extends Exception {
	private final InvalidEntry invalidEntry;

	public InvalidDbEntry(@NonNull InvalidEntry invalidEntry) {
		this.invalidEntry = invalidEntry;
	}

	public @NonNull InvalidEntry getInvalidEntry() {
		return invalidEntry;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy