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

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

There is a newer version: 2.0.0
Show 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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy