com.atlassian.clover.api.instrumentation.ConcurrentInstrumentationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clover Show documentation
Show all versions of clover Show documentation
OpenClover 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.
package com.atlassian.clover.api.instrumentation;
import com.atlassian.clover.api.registry.CloverRegistryException;
public class ConcurrentInstrumentationException extends CloverRegistryException {
public ConcurrentInstrumentationException(String message) {
super(message);
}
}