01: /**
02: * LibreSource Community
03: * Copyright (C) 2004-2007 Artenum SARL / INRIA
04: * http://www.libresource.org - contact@artenum.com
05: *
06: * This software is not a free software; you can modify it under the
07: * LibreSource Enterprise user license but you can't redistribute it.
08: * See licenses details in LSE-user-license.txt
09: *
10: * Initial authors :
11: *
12: * Guillaume Bort / INRIA
13: * Francois Charoy / Universite Nancy 2
14: * Julien Forest / Artenum
15: * Claude Godart / Universite Henry Poincare
16: * Florent Jouille / INRIA
17: * Sebastien Jourdain / INRIA / Artenum
18: * Yves Lerumeur / Artenum
19: * Pascal Molli / Universite Henry Poincare
20: * Gerald Oster / INRIA
21: * Mariarosa Penzi / Artenum
22: * Gerard Sookahet / Artenum
23: * Raphael Tani / INRIA
24: *
25: * Contributors :
26: *
27: * Stephane Bagnier / Artenum
28: * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
29: */package org.libresource.form;
30:
31: /**
32: * Artenum Contribution
33: * @author <a href="mailto:jourdain@artenum.com">Sebastien Jourdain</a> - <a href="http://www.artenum.com">Artenum</a>
34: */
35: public class FormFieldRequiredException extends Exception {
36: public FormFieldRequiredException(String message,
37: Exception rootCause) {
38: super (message, rootCause);
39: }
40:
41: public FormFieldRequiredException(String message) {
42: super (message);
43: }
44:
45: public FormFieldRequiredException(Exception rootCause) {
46: super(rootCause);
47: }
48: }
|