package org.simantics.fmil.core; /** * Exception thrown when native fmu calls fail * @author Teemu Lempinen * */ public class FMILException extends Exception { private static final long serialVersionUID = -7164064752664568008L; public FMILException(String message) { super(message); } public FMILException(String message, Throwable cause) { super(message, cause); } }