com.foresee.api.sdk.exceptions.ApiAuthenticationException 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;
@Builder
@Getter
public class ApiAuthenticationException extends Exception {
/** Friendly message */
private final String message;
/** Underlying Cause */
private final Throwable cause;
}