com.teamscale.jacoco.agent.configuration.AgentOptionReceiveException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of teamscale-jacoco-agent Show documentation
Show all versions of teamscale-jacoco-agent Show documentation
JVM profiler that simplifies various aspects around recording and uploading test coverage
package com.teamscale.jacoco.agent.configuration;
/** Thrown when retrieving the profiler configuration from Teamscale fails. */
public class AgentOptionReceiveException extends Exception {
/**
* Serialization ID.
*/
private static final long serialVersionUID = 1L;
/**
* Constructor.
*/
public AgentOptionReceiveException(String message) {
super(message);
}
/**
* Constructor.
*/
public AgentOptionReceiveException(String message, Throwable cause) {
super(message, cause);
}
}