Back to project page forklift.
The source code is released under:
Apache License
If you think the Android project forklift 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 ch.gluecode.forklift; //from w w w. j a va 2 s . c om /** * Indicates that an error occurred when accessing a bundled SQLite database. */ public class BundledSqliteOpenHelperException extends RuntimeException { public BundledSqliteOpenHelperException() { } public BundledSqliteOpenHelperException(String detailMessage) { super(detailMessage); } public BundledSqliteOpenHelperException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public BundledSqliteOpenHelperException(Throwable throwable) { super(throwable); } }