Android Open Source - client-android Http Helper Exception






From Project

Back to project page client-android.

License

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.

Java Source Code

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);
  }
}




Java Source Code List

com.qmonix.sample.basic.MainActivity.java
com.qmonix.sdk.EventDispatchHandler.java
com.qmonix.sdk.EventDispatcher.java
com.qmonix.sdk.EventMessage.java
com.qmonix.sdk.Event.java
com.qmonix.sdk.FireableTimingEvent.java
com.qmonix.sdk.HttpEventDispatcher.java
com.qmonix.sdk.LogEventDispatcher.java
com.qmonix.sdk.QLog.java
com.qmonix.sdk.TimingEvent.java
com.qmonix.sdk.Tracker.java
com.qmonix.sdk.VolumeEvent.java
com.qmonix.sdk.helpers.HttpHelper.java
com.qmonix.sdk.helpers.exceptions.HttpHelperException.java
com.qmonix.sdk.utils.AsyncTaskResult.java
com.qmonix.sdk.utils.Utils.java