io.perfana.client.PerfanaClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of perfana-java-client Show documentation
Show all versions of perfana-java-client Show documentation
Perfana java client for integrating performance test tools
package io.perfana.client;
public class PerfanaClientException extends Exception {
PerfanaClientException(final String message) {
super(message);
}
PerfanaClientException(final String message, final Exception e) {
super(message, e);
}
}