
com.atlassian.clover.registry.RegistryFormatException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clover-runtime Show documentation
Show all versions of clover-runtime Show documentation
Clover's runtime library - required by code instrumented by Clover.
Clover is an award-winning code coverage and testing tool for Java and Groovy.
It integrates easily with Maven, Ant, Grails, Eclipse and IntelliJ IDEA
as well as with continuous integration servers such as Bamboo, Jenkins or Hudson.
The newest version!
package com.atlassian.clover.registry;
import com.atlassian.clover.api.registry.CloverRegistryException;
public abstract class RegistryFormatException extends CloverRegistryException {
protected RegistryFormatException(String reason) {
super(reason);
}
public RegistryFormatException(String pathToRegistry, String probableCauseMessage, Throwable cause) {
super("Clover encountered a problem reading the instrumentation registry \"" + pathToRegistry + "\". " + probableCauseMessage, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy