1
2
3
4
5
6
7 package yawn.config;
8
9 import yawn.YawnException;
10
11 /***
12 * This is yawn.config.ValidationException, part of the yawn project.
13 *
14 * <p>$Id: ValidationException.java,v 1.4 2005/04/20 18:55:14 supermarti Exp $</p>
15 *
16 * @author Luis Martí (luis dot marti at uc3m dot es)
17 * @version $Revision: 1.4 $
18 */
19 public class ValidationException extends YawnException {
20
21 /***
22 *
23 */
24 private static final long serialVersionUID = 3545803186523681331L;
25
26 /***
27 *
28 */
29 public ValidationException() {
30 super();
31
32 }
33
34 /***
35 * @param arg0
36 */
37 public ValidationException(String arg0) {
38 super(arg0);
39
40 }
41
42 /***
43 * @param arg0
44 * @param arg1
45 */
46 public ValidationException(String arg0, Throwable arg1) {
47 super(arg0, arg1);
48
49 }
50
51 /***
52 * @param arg0
53 */
54 public ValidationException(Throwable arg0) {
55 super(arg0);
56
57 }
58
59 }