
org.sourcelab.github.client.exception.InvalidPermissionsException Maven / Gradle / Ivy
The newest version!
package org.sourcelab.github.client.exception;
/**
* Thrown if the API was requested from an IP address not specifically allowed by the API Token.
* Check the 'Allowed IP Addresses' field on the API Token.
*/
public class InvalidPermissionsException extends GithubException {
/**
* Constructor.
* @param message Error message.
*/
public InvalidPermissionsException(final String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy