01: /*
02: * Copyright (c) 2002-2006 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.xwork.validator;
06:
07: /**
08: * ValidationException.
09: *
10: * @author Jason Carreira
11: */
12: public class ValidationException extends Exception {
13:
14: /**
15: * Constructs an <code>Exception</code> with no specified detail message.
16: */
17: public ValidationException() {
18: }
19:
20: /**
21: * Constructs an <code>Exception</code> with the specified detail message.
22: *
23: * @param s the detail message.
24: */
25: public ValidationException(String s) {
26: super(s);
27: }
28: }
|