1 /* $Id: SOFARuntimeException.java,v 1.1.1.1 2003/02/11 16:19:41 bures Exp $ */2 package SOFA.SOFAnode.Run;3 4 /** SOFA runtime exception.5 *6 * @author Petr Hnetynka7 */8 public class SOFARuntimeException extends cz.cuni.sofa.lib.SystemException {9 public SOFARuntimeException () {10 super();11 }12 13 public SOFARuntimeException (String msg) {14 super(msg);15 }16 17 public SOFARuntimeException (String msg, Throwable cause) {18 super(msg, cause);19 }20 }21 22