Back to project page android-sqlite-kvs.
The source code is released under:
Apache License
If you think the Android project android-sqlite-kvs 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 jp.fkmsoft.libs.sqlitekvs; /*from w ww . ja va2 s. c om*/ /** * Exception */ public class KVSException extends RuntimeException { public KVSException() { super(); } public KVSException(String detailMessage) { super(detailMessage); } public KVSException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public KVSException(Throwable throwable) { super(throwable); } }