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.impl.binder; /* w ww .j a v a2 s .com*/ /** * Thrown if any part of the IPC contract is not met when communicating with either the client or * server party in the SQLiteServerConnection exchange. */ public class SQLiteServerProtocolException extends Exception { public SQLiteServerProtocolException() { super(); } public SQLiteServerProtocolException(String message) { super(message); } public SQLiteServerProtocolException(String message, Throwable t) { super(message, t); } public SQLiteServerProtocolException(Throwable t) { super(t); } }