01: /*
02: * GWT-Ext Widget Library
03: * Copyright(c) 2007-2008, GWT-Ext.
04: * licensing@gwt-ext.com
05: *
06: * http://www.gwt-ext.com/license
07: */
08: package com.gwtext.client.widgets.form;
09:
10: /**
11: * Exception to raise when field validaiton fails.
12: *
13: * @see Validator#validate(String)
14: */
15: public class ValidationException extends Exception {
16:
17: /**
18: * Create new ValidationException.
19: *
20: * @param message the field validation error message
21: */
22: public ValidationException(String message) {
23: super(message);
24: }
25: }
|