01: package org.jreform;
02:
03: /**
04: * Thrown when a group or an input with duplicate name is added to a form.
05: *
06: * @author armandino (at) gmail.com
07: */
08: publicclass DuplicateNameException extendsRuntimeException {
09: public DuplicateNameException(String msg) {
10: super(msg);
11: }
12:
13: }