org.octopusden.octopus.dms.client.RuntimeMojoExecutionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-dms-plugin Show documentation
Show all versions of maven-dms-plugin Show documentation
Octopus module: maven-dms-plugin
The newest version!
package org.octopusden.octopus.dms.client;
public class RuntimeMojoExecutionException extends RuntimeException {
public RuntimeMojoExecutionException(String message) {
super(message);
}
public RuntimeMojoExecutionException(String message, Throwable e) {
super(message, e);
}
}