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

com.indix.exception.TooManyRequestsException Maven / Gradle / Ivy

package com.indix.exception;

/**
 * Indix exception corresponding to HTTP 429 error code
 */
public class TooManyRequestsException extends IndixApiException {

    public TooManyRequestsException() {
        super();
    }

    public TooManyRequestsException(String message) {
        super(429, message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy