mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-10 15:49:57 +00:00
15 lines
287 B
Java
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);
|
|
}
|
|
}
|