All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.teamscale.jacoco.agent.configuration.AgentOptionReceiveException Maven / Gradle / Ivy

Go to download

JVM profiler that simplifies various aspects around recording and uploading test coverage

There is a newer version: 34.0.2
Show newest version
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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy