org.ajoberstar.reckon.gradle.ReckonConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reckon-gradle Show documentation
Show all versions of reckon-gradle Show documentation
Infer a project's version from your Git repository.
The newest version!
package org.ajoberstar.reckon.gradle;
public class ReckonConfigurationException extends RuntimeException {
public ReckonConfigurationException(String message, Throwable cause) {
super(message, cause);
}
}