1 /*2 * Created on 22.mar.20033 *4 */5 package net.sf.panoptes.registry;6 7 /**8 * 9 * 10 * @author Dag Liodden11 * @version 0.112 */13 public class EditorRegistryException extends Exception {14 15 16 /**17 * @param string18 */19 public EditorRegistryException(String msg) {20 super(msg);21 }22 23 /**24 * @param e25 */26 public EditorRegistryException(String msg, Exception e) {27 super(e);28 }29 30 }31