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; // w ww .j av a2 s.c o m import java.lang.reflect.Field; /** * Exception of notnull field. * * @author Rodrigo Sim?es Rosa. */ public class SQLiteNotNullFieldException extends Exception { /** * Serialization */ private static final long serialVersionUID = -1178871606123303993L; public SQLiteNotNullFieldException(Field field) { this("The field " + field.getName() + "is not allowed to null!"); } public SQLiteNotNullFieldException(String value) { super(value); } }