package org.simantics.export.core.error; public class ExportException extends Exception { private static final long serialVersionUID = 1L; public ExportException() { super(); // TODO Auto-generated constructor stub } public ExportException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } public ExportException(String message) { super(message); // TODO Auto-generated constructor stub } public ExportException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } }