Back to project page br.com.mirabilis.sqlite.
The source code is released under:
Apache License
If you think the Android project br.com.mirabilis.sqlite 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 br.com.mirabilis.sqlite.manager.exception; //from w w w .j a v a 2 s .c o m /** * Exception from {@link SQLiteException} * * @author Rodrigo Sim?es Rosa */ public class SQLiteException extends Exception { /** * Serialization */ private static final long serialVersionUID = -4913326707914327547L; public SQLiteException() { super("SQLiteException exception"); } public SQLiteException(Throwable throwable) { super(throwable); } public SQLiteException(String exception) { super(exception); } public SQLiteException(String exception, Throwable throwable) { super(exception, throwable); } }