package ie.dcu.apps.ist.export.imagemap; /** * Exception thrown when there is a problem producing the export. * * @author Kevin McGuinness */ public class ExportException extends Exception { private static final long serialVersionUID = 1L; public ExportException() { } public ExportException(String message) { super(message); } public ExportException(Throwable cause) { super(cause); } public ExportException(String message, Throwable cause) { super(message, cause); } }