cookercucumber_parser.exceptionsFactory.Exceps.ExcelException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cooker-maven-plugin Show documentation
Show all versions of cooker-maven-plugin Show documentation
Derives smallest Feature File, Allows Data from Excel(xls and xlsx) and Also provides a clear and
concise reporting
package cookercucumber_parser.exceptionsFactory.Exceps;
import cookercucumber_parser.exceptionsFactory.CookerPluginException;
public class ExcelException extends CookerPluginException {
/**
* Constructor to set the error message
* Author : Manjunath Prabhakar ([email protected])
*
* @param message Error Message to display
*/
public ExcelException(String message) {
super(message);
}
}