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 va2s . c o m*/ /** * Exception of control result of query when that is empty. * * @author Rodrigo Sim?es Rosa. */ public class SQLiteEmptyException extends Exception { /** * Serialization */ private static final long serialVersionUID = 5730852278529610005L; public SQLiteEmptyException(String msg) { super(msg); } public SQLiteEmptyException() { this("The result of query in sqlite is empty"); } public SQLiteEmptyException(Throwable throwable) { super(throwable); } }