1 package org.apache.turbine.services.intake.validator;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 import org.apache.turbine.services.intake.IntakeException;
20
21 /***
22 * An Exception to mark a failed validation
23 *
24 * @author <a href="mailto:jmcnally@collab.net">John McNally</a>
25 * @author <a href="mailto:quintonm@bellsouth.net">Quinton McCombs</a>
26 * @version $Id: ValidationException.java 278822 2005-09-05 19:53:05Z henning $
27 */
28 public class ValidationException
29 extends IntakeException
30 {
31 /*** Serial Version UID */
32 private static final long serialVersionUID = -4511820025175711625L;
33
34 /***
35 * Creates a new <code>ValidationException</code> instance.
36 *
37 * @param message describing the reason validation failed.
38 */
39 public ValidationException(String message)
40 {
41 super(message);
42 }
43 }