Back to project page InMemoryDb.
The source code is released under:
Apache License
If you think the Android project InMemoryDb listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.gawst.asyncdb; //from ww w.j a v a 2 s . c o m 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; } }