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,v 1.4.2.2 2004/05/20 03:06:47 seade Exp $
27 */
28 public class ValidationException
29 extends IntakeException
30 {
31 /***
32 * Creates a new <code>ValidationException</code> instance.
33 *
34 * @param message describing the reason validation failed.
35 */
36 public ValidationException(String message)
37 {
38 super(message);
39 }
40 }