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

org.sourcelab.github.client.exception.InvalidAllowedIpAddressException 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 InvalidAllowedIpAddressException extends GithubException {
     /**
     * Constructor.
     * @param message Error message.
      */
    public InvalidAllowedIpAddressException(final String message) {
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy