package com.github.setial.intellijjavadocs.exception;
/**
* The type File not valid exception.
*
* @author Sergey Timofiychuk
*/
public class FileNotValidException extends RuntimeException {
/**
* Instantiates a new File not valid exception.
*
* @param message the message
*/
public FileNotValidException(String message) {
super(message);
}
}