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

com.xeiam.xchange.hitbtc.dto.HitbtcException Maven / Gradle / Ivy

The newest version!
package com.xeiam.xchange.hitbtc.dto;

import com.fasterxml.jackson.annotation.JsonProperty;

@SuppressWarnings("serial")
public class HitbtcException extends RuntimeException {

  @JsonProperty("message")
  String message;

  public HitbtcException(@JsonProperty("message") String message) {

    super();
    this.message = message;
  }

  public String getMessage() {

    return message;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy