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; // w ww.j av a 2 s. c om /** * usually represents a general error for the whole api call, if you need to * know if the parsing failed check the status of the response and the error * message ( if status is SC_OK means the api call was successful and there was * a parsing error). * * @author DArkO */ public class HttpException extends Exception { private static final long serialVersionUID = -120498658240098246L; @SuppressWarnings("unused") private static final String TAG = HttpException.class.getSimpleName(); public HttpException() { super(); } public HttpException(final String detailMessage, final Throwable throwable) { super(detailMessage, throwable); } public HttpException(final String detailMessage) { super(detailMessage); } public HttpException(final Throwable throwable) { super(throwable); } }