com.lazerycode.jmeter.exceptions.DependencyResolutionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of perfana-jmeter-maven-plugin Show documentation
Show all versions of perfana-jmeter-maven-plugin Show documentation
Forked from jmeter-maven-plugin, with Perfana integration.
package com.lazerycode.jmeter.exceptions;
import org.apache.maven.plugin.MojoExecutionException;
public class DependencyResolutionException extends MojoExecutionException {
public DependencyResolutionException(String message, Throwable cause) {
super(message, cause);
}
public DependencyResolutionException(String message) {
super(message);
}
}