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

com.cerner.ccl.testing.xsl.XslAPIException Maven / Gradle / Ivy

Go to download

A plugin used to generate reports of test outcomes and code coverage by tests executed by the CCL Testing Framework and through the maven-ccl-plugin

There is a newer version: 2.3
Show newest version
package com.cerner.ccl.testing.xsl;

/**
 * An exception to indicate that an error occurred during the transformation of XML by XSL.
 * 
 * @author Jeff Wiedemann
 * 
 */

public class XslAPIException extends Exception {
    private static final long serialVersionUID = 2302377641246733540L;

    /**
     * Other constructor.
     * 
     * @param msg
     *            the exception message.
     * @param e
     *            the exception.
     */
    public XslAPIException(String msg, Exception e) {
        super(msg, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy