package main.java.view;
/**
* General IO Exception for Matrixonator NON-CRITICAL
*
* @author Ewan McCartney
*
*/
public class MatrixonatorIOException extends Exception {
// Added by Eclipse to suppress warnings
private static final long serialVersionUID = 4118735588039465261L;
public MatrixonatorIOException(String message) {
super(message);
}
}