com.teamscale.jacoco.agent.options.AgentOptionParseException 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.options;
/**
* Thrown if option parsing fails.
*/
public class AgentOptionParseException extends Exception {
/**
* Serialization ID.
*/
private static final long serialVersionUID = 1L;
/**
* Constructor.
*/
public AgentOptionParseException(String message) {
super(message);
}
/**
* Constructor.
*/
public AgentOptionParseException(String message, Throwable cause) {
super(message, cause);
}
}