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