Back to project page android-sqlite-server.
The source code is released under:
Apache License
If you think the Android project android-sqlite-server 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 org.devtcg.sqliteserver.exception; /* w ww .ja v a2s.c om*/ public class SQLiteServerException extends RuntimeException { public SQLiteServerException(String msg) { super(msg); } public SQLiteServerException(Throwable t) { super(t); } }