1 /*
2 * Created on 22.mar.2003
3 *
4 */
5 package net.sf.panoptes.model.component.registry;
6
7 /***
8 *
9 *
10 * @author Dag Liodden
11 * @version 0.1
12 */
13 public class ConfiguratorRegistryException extends Exception {
14
15
16 /***
17 * @param string
18 */
19 public ConfiguratorRegistryException(String msg) {
20 super(msg);
21 }
22
23 /***
24 * @param e
25 */
26 public ConfiguratorRegistryException(String msg, Exception e) {
27 super(e);
28 }
29
30 }
This page was automatically generated by Maven