pl.touk.sputnik.connector.gerrit.GerritException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sputnik Show documentation
Show all versions of sputnik Show documentation
Static code review for your Gerrit and Stash patchsets. Runs Checkstyle, PMD and SpotBugs for you!
package pl.touk.sputnik.connector.gerrit;
public class GerritException extends RuntimeException {
public GerritException(String message, Throwable cause) {
super(message, cause);
}
}