com.foresee.api.sdk.exceptions.ApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of public-api-sdk Show documentation
Show all versions of public-api-sdk Show documentation
SDK to access Foresee data over Public API
package com.foresee.api.sdk.exceptions;
import lombok.Builder;
import lombok.Getter;
import java.util.List;
@Getter
@Builder
public class ApiException extends Exception {
@com.google.gson.annotations.SerializedName("statusCode")
private final Integer statusCode;
@com.google.gson.annotations.SerializedName("message")
private final String message;
@com.google.gson.annotations.SerializedName("errorCode")
private final String errorCode = null;
@com.google.gson.annotations.SerializedName("timestamp")
private final String timestamp ;
@com.google.gson.annotations.SerializedName("detailedErrors")
private List detailedErrors = null;
@com.google.gson.annotations.SerializedName("cause2")
private Throwable cause;
}