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

org.sourcelab.github.client.exception.GithubException Maven / Gradle / Ivy

The newest version!

package org.sourcelab.github.client.exception;

/**
 * Top level Exception class from which all more specific exceptions relating to the
 * Buildkite Api Client library extend from.
 */
public class GithubException extends RuntimeException {
    /**
     * Constructor.
     * @param message Error message.
     */
    public GithubException(final String message) {
        super(message);
    }

    /**
     * Constructor.
     * @param message Error message.
     * @param cause Underlying exception/cause.
     */
    public GithubException(final String message, final Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy