Files
github-api/src/main/java/org/kohsuke/github/GHException.java
2010-12-09 10:00:54 -08:00

15 lines
287 B
Java

package org.kohsuke.github;
/**
* @author Kohsuke Kawaguchi
*/
public class GHException extends RuntimeException {
public GHException(String message) {
super(message);
}
public GHException(String message, Throwable cause) {
super(message, cause);
}
}