edu.ksu.canvas.exception.ThrottlingException 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
The newest version!
package edu.ksu.canvas.exception;
/**
* Thrown if Canvas returns a 403 response in response to too many API requests
* See https://canvas.instructure.com/doc/api/file.throttling.html
*/
public class ThrottlingException extends CanvasException {
private static final long serialVersionUID = 1L;
public ThrottlingException() {
super();
}
public ThrottlingException(String canvasErrorString, String url) {
super(canvasErrorString, url);
}
}