1 /*
2 * Created on 07.mar.2003
3 *
4 */
5 package net.sf.panoptes.model.component.registry;
6
7 /***
8 * Thrown if a component already is registered in the registry.
9 *
10 * @author Dag Liodden
11 * @see net.sf.panoptes.model.component.registry.ComponentRegistry
12 */
13 public class ComponentAlreadyExistsException extends Exception {
14
15 /***
16 * @param string
17 */
18 public ComponentAlreadyExistsException(String string) {
19 super(string);
20 }
21
22 }
This page was automatically generated by Maven