All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.contactlab.hub.sdk.java.exceptions.HttpException Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package it.contactlab.hub.sdk.java.exceptions;

import com.mashape.unirest.http.exceptions.UnirestException;

public class HttpException extends ContactHubException {

  /**
   * HttpException is thrown when a request to the ContactHub API failed with an
   * exception and no response is available.
   */
  public HttpException(UnirestException exception) {
    super("The HTTP call failed with error: " + exception.getMessage(), exception);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy