io.nishadc.automationtestingframework.filehandling.exceptions.ExcelFileHandlingException Maven / Gradle / Ivy
package io.nishadc.automationtestingframework.filehandling.exceptions;
/**
* Class Name: ExcelFileHandlingException.java
* Description: Thrown in case of issue while reading excel files.
* @author Nishad Chayanakhawa<[email protected]>
*
*/
public class ExcelFileHandlingException extends Exception{
/**
*
*/
private static final long serialVersionUID = 1L;
public ExcelFileHandlingException(String exceptionMessage) {
super(exceptionMessage);
}
}