com.microsoft.azure.kusto.data.exceptions.ThrottleException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kusto-data Show documentation
Show all versions of kusto-data Show documentation
Kusto client library for executing queries and retrieving data
package com.microsoft.azure.kusto.data.exceptions;
public class ThrottleException extends DataServiceException {
public static final String ERROR_MESSAGE = "Request was throttled, too many requests.";
public ThrottleException(String ingestionSource) {
super(ingestionSource, ERROR_MESSAGE, false);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy