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

edu.ksu.canvas.exception.RateLimitException Maven / Gradle / Ivy

The newest version!
package edu.ksu.canvas.exception;

/**
 * Thrown if Canvas returns a 403 Rate Limit Exceeded response.
 */
public class RateLimitException extends CanvasException {

    public RateLimitException() {
        super();
    }

    public RateLimitException(String canvasErrorString, String url) {
        super(canvasErrorString, url);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy