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