com.atlassian.clover.api.CloverException 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.
package com.atlassian.clover.api;
public class CloverException extends Exception {
public CloverException(String reason) {
super(reason);
}
public CloverException(Throwable cause) {
super(cause.toString() != null ? cause.toString() : cause.getClass().getName(), cause);
}
public CloverException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy