org.knowm.xchange.cobinhood.dto.CobinhoodError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-cobinhood Show documentation
Show all versions of xchange-cobinhood Show documentation
Development fork. Not for general use.
package org.knowm.xchange.cobinhood.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
public class CobinhoodError {
private final String code;
public CobinhoodError(@JsonProperty("error_code") String code) {
this.code = code;
}
public String getCode() {
return code;
}
@Override
public String toString() {
return "CobinhoodError{" + "code='" + code + '\'' + '}';
}
}