1 package pl.caltha.forms;
2
3 /***
4 * Thrown on problems with form definition objects {@link Form} construction.
5 *
6 * @author <a href="mailto:zwierzem@ngo.pl">Damian Gajda</a>
7 * @version $Id: ConstructionException.java,v 1.1 2005/01/19 06:55:23 pablo Exp $
8 */
9 public class ConstructionException
10 extends FormsException
11 {
12 public ConstructionException()
13 {
14 super();
15 }
16
17 public ConstructionException(String msg)
18 {
19 super(msg);
20 }
21
22 public ConstructionException(String msg, Exception e)
23 {
24 super(msg, e);
25 }
26 }