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

org.knowm.xchange.itbit.v1.dto.ItBitException Maven / Gradle / Ivy

There is a newer version: 5.2.1
Show newest version
package org.knowm.xchange.itbit.v1.dto;

import com.fasterxml.jackson.annotation.JsonProperty;

import si.mazi.rescu.HttpStatusExceptionSupport;

public class ItBitException extends HttpStatusExceptionSupport {

  private String code;

  private String requestId;

  public ItBitException(@JsonProperty("code") String code, @JsonProperty("description") String description,
      @JsonProperty("requestId") String requestId) {
    super(description);
    this.code = code;
    this.requestId = requestId;
  }

  public String getCode() {
    return code;
  }

  public String getRequestId() {
    return requestId;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy