Back to project page android-http.
The source code is released under:
Apache License
If you think the Android project android-http 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.markom.android.http.exceptions; /* w w w . ja v a2 s .c o m*/ public class ParsingNotImplementedException extends Exception { private static final long serialVersionUID = 1L; private static final String EXCEPTION_MESSAGE = "Parsing exception"; public ParsingNotImplementedException() { super(EXCEPTION_MESSAGE); } public ParsingNotImplementedException(String message) { super(message); } }