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

com.atlassian.clover.api.registry.CloverRegistryException Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 4.5.2
Show newest version
package com.atlassian.clover.api.registry;

import com.atlassian.clover.api.CloverException;

public abstract class CloverRegistryException extends CloverException {
    public CloverRegistryException(String message) {
        super(message);
    }

    public CloverRegistryException(String message, Throwable t) {
        super(message);
        initCause(t);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy