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

org.kohsuke.github.GHNotExternallyManagedEnterpriseException Maven / Gradle / Ivy

The newest version!
package org.kohsuke.github;

/**
 * Failure when the operation cannot be carried out because the resource is not part of an externally managed
 * enterprise.
 *
 * @author Miguel Esteban Gutiérrez
 */
public class GHNotExternallyManagedEnterpriseException extends GHEnterpriseManagedUsersException {

    /**
     * The serial version UID of the exception.
     */
    private static final long serialVersionUID = 1978052201L;

    /**
     * Instantiates a new exception.
     *
     * @param message
     *            the message
     * @param error
     *            the error that caused the exception
     * @param cause
     *            the cause
     */
    public GHNotExternallyManagedEnterpriseException(final String message, final GHError error, final Throwable cause) {
        super(message, error, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy