com.cerner.ccl.testing.xsl.XslAPIException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cerreal-maven-plugin Show documentation
Show all versions of cerreal-maven-plugin Show documentation
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
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);
}
}