1 /*2 * EEGeneratorException.java3 *4 * Created on 2. duben 2002, 12:425 */6 7 package SOFA.Connector.EEG;8 9 /**10 *11 * @author ghort12 * @version 13 */14 public class EEGeneratorException extends java.lang.Exception {15 16 /**17 * Creates new <code>EEGeneratorException</code> without detail message.18 */19 public EEGeneratorException() {20 }21 22 23 /**24 * Constructs an <code>EEGeneratorException</code> with the specified detail message.25 * @param msg the detail message.26 */27 public EEGeneratorException(String msg) {28 super(msg);29 }30 31 public EEGeneratorException(String msg, Throwable e) {32 super(msg,e);33 }34 }35 36 37