package model.manager.excel.conversion.exceptions;
/**
*/
public class PatientException extends ParseException {
/**
*
*/
private static final long serialVersionUID = -8268719554654038874L;
/**
* Constructor for PatientException.
* @param message String
*/
public PatientException(String message) {
super(message);
}
}