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

com.xeiam.xchange.poloniex.PoloniexException Maven / Gradle / Ivy

The newest version!
package com.xeiam.xchange.poloniex;

import com.fasterxml.jackson.annotation.JsonProperty;

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

  @JsonProperty("error")
  String error;

  public PoloniexException(@JsonProperty("error") String error) {

    super();
    this.error = error;
  }

  public String getError() {

    return error;
  }

  public void setError(String error) {

    this.error = error;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy