Back to project page SQLDroid.
The source code is released under:
MIT License
If you think the Android project SQLDroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Created on May 9, 2012/*from w ww . j av a 2 s . c o m*/ * * To change the template for this generated file go to * Window - Preferences - Java - Code Generation - Code and Comments */ package android.database.sqlite; import android.database.SQLException; public class SQLiteException extends SQLException { public SQLiteException(String string) { super(string); } }