01: // IllegalFieldValueException.java
02: // $Id: IllegalFieldValueException.java,v 1.2 1998/01/22 13:08:04 bmahe Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1996.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.tools.forms;
07:
08: /**
09: * This exception is thrown when a field is set to an invalid value.
10: */
11:
12: public class IllegalFieldValueException extends Exception {
13: IllegalFieldValueException(Object arg) {
14: super ("illegal value: " + arg);
15: }
16: }
|