View Javadoc
1 package net.sf.panoptes.model.component.registry; 2 3 /*** 4 * Thrown when a string used to construct an ComponentName is not valid. 5 * 6 */ 7 public class MalformedComponentNameException extends Exception { 8 9 /*** 10 * Construct a new MalformedComponentNameException with no message. 11 */ 12 public MalformedComponentNameException() { 13 super(); 14 } 15 16 /*** 17 * Construct a new MalformedComponentNameException with the given message. 18 * 19 * @param message the error message. 20 */ 21 public MalformedComponentNameException(String message) { 22 super(message); 23 } 24 }

This page was automatically generated by Maven