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

com.foresee.api.sdk.exceptions.ApiException Maven / Gradle / Ivy

There is a newer version: 1.2.4-M3
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy