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

This page was automatically generated by Maven