package model.exception;
public class TabInitException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* Constructor
*/
public TabInitException() {
super();
}
/**
* Constructor
*
* @param msg
* given error message
*/
public TabInitException(String msg) {
super(msg);
}
}