Back to project page client-android.
The source code is released under:
Apache License
If you think the Android project client-android 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.qmonix.sdk.helpers.exceptions; //ww w . j a v a 2s . c o m /** * Exception that is thrown when error occurs while doing HTTP related operations. * <p> * Exception constructor accepts error detail message parameter which later can be retrieved * with {@link Throwable#getMessage getMessage}. * * @see com.qmonix.sdk.helpers.HttpHelper */ public class HttpHelperException extends Exception { /* @see java.io.Serializable */ private static final long serialVersionUID = 1; /** * Constructs new exception object with the current stack trace and specified error message. * * @param detailMessage the detail message for this exception. */ public HttpHelperException(String detailMessage) { super(detailMessage); } }