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

com.teamscale.jacoco.agent.commit_resolution.git_properties.InvalidGitPropertiesException 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.commit_resolution.git_properties;

/**
 * Thrown in case a git.properties file is found but it is malformed.
 */
public class InvalidGitPropertiesException extends Exception {
	/*package*/ InvalidGitPropertiesException(String s, Throwable throwable) {
		super(s, throwable);
	}

	public InvalidGitPropertiesException(String s) {
		super(s);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy