mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-15 15:50:07 +00:00
31 lines
593 B
Java
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);
|
|
}
|
|
}
|