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 a 2s .com*/ public class GsonParsingException extends Exception { private static final long serialVersionUID = 1L; private static final String EXCEPTION_MESSAGE = "Failure while pasing JSON"; public GsonParsingException() { super(EXCEPTION_MESSAGE); } public GsonParsingException(String message) { super(message); } }