Files
github-api/src/main/java/org/kohsuke/github/GHException.java
2020-03-04 11:32:12 -08:00

31 lines
593 B
Java

package org.kohsuke.github;
/**
* The type GHException.
*
* @author Kohsuke Kawaguchi
*/
public class GHException extends RuntimeException {
/**
* Instantiates a new Gh exception.
*
* @param message
* the message
*/
public GHException(String message) {
super(message);
}
/**
* Instantiates a new Gh exception.
*
* @param message
* the message
* @param cause
* the cause
*/
public GHException(String message, Throwable cause) {
super(message, cause);
}
}