Back to project page android-rest-client.
The source code is released under:
Apache License
If you think the Android project android-rest-client 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.dg.libs.rest.exceptions; /*from w w w .j a va 2s . c om*/ public class ParseException extends HttpException { private static final long serialVersionUID = -7964127989566422126L; @SuppressWarnings("unused") private static final String TAG = ParseException.class.getSimpleName(); public ParseException(final String s) { super(s); } public ParseException(final String detailMessage, final Throwable throwable) { super(detailMessage, throwable); } public ParseException(final Throwable throwable) { super(throwable); } }