edu.ksu.canvas.exception.RateLimitException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of canvas-api Show documentation
Show all versions of canvas-api Show documentation
A native Java library to talk to the Canvas REST API
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);
}
}