org.knowm.xchange.coinbase.dto.CoinbaseException Maven / Gradle / Ivy
package org.knowm.xchange.coinbase.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
import si.mazi.rescu.HttpStatusExceptionSupport;
public class CoinbaseException extends HttpStatusExceptionSupport {
public CoinbaseException(
@JsonProperty("error") String message, @JsonProperty("success") Boolean success) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy