com.foresee.api.sdk.exceptions.InvalidTokenException 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 java.util.List;
public class InvalidTokenException extends ApiException {
public InvalidTokenException(Integer statusCode, String message, String timestamp, List detailedErrors, Throwable cause) {
super(statusCode, message, timestamp, detailedErrors, cause);
}
}