package cz.muni.fi.rtc.teacherWorkbench.importer.exceptions; /** * ImporterException * @author Jan Stastny * */ public class ImporterException extends Exception { private static final long serialVersionUID = 1L; public ImporterException() { // TODO Auto-generated constructor stub } public ImporterException(String message) { super(message); // TODO Auto-generated constructor stub } public ImporterException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } public ImporterException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } }