Back to project page GenericServer.
The source code is released under:
GNU General Public License
If you think the Android project GenericServer 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 com.davecoss.android.genericserver; //from ww w .j ava2 s .c om public class InvalidRequestData extends HTTPError { /** * UID Generated by Eclipse */ private static final long serialVersionUID = -8945493902183733640L; public InvalidRequestData() { super(); } public InvalidRequestData(String message) { super(message); } public InvalidRequestData(String message, Throwable throwable) { super(message, throwable); } }