com.treasuredata.client.TDClientHttpTooManyRequestsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of td-client Show documentation
Show all versions of td-client Show documentation
Treasure Data Client for Java.
package com.treasuredata.client;
import java.util.Date;
/**
* 429 Too Many Requests error (i.e., rate limited).
*/
public class TDClientHttpTooManyRequestsException
extends TDClientHttpException
{
public static final int TOO_MANY_REQUESTS_429 = 429;
public TDClientHttpTooManyRequestsException(String errorMessage, Date retryAfter)
{
super(ErrorType.CLIENT_ERROR, errorMessage, TOO_MANY_REQUESTS_429, retryAfter);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy