001 /** ===================================================================== 002 * 003 * File Name : $Id: FieldInvalidException.java,v 1.2 2008/01/15 11:08:16 cb Exp $ 004 * 005 * Description 006 * ----------- 007 * 008 * See javadoc comment 009 * 010 * ===================================================================== 011 * 012 * @Author : Craige Bevil 013 * Control Software Group 014 * Isaac Newton Group of Telescopes 015 * 016 * ===================================================================== 017 * 018 * Modification Log 019 * 020 * Vers Date Author Reason 021 * ---- ---- ------ ------ 022 * 1 10 May 2005 C.Bevil First Release 023 * 024 * Commissioning Notes 025 * ------------------- 026 * 027 * None 028 * 029 * ===================================================================== 030 * 031 * @Version : $Id: FieldInvalidException.java,v 1.2 2008/01/15 11:08:16 cb Exp $ 032 * 033 * @Author : $Author: cb $ 034 * 035 * Header : $Header: /opt/INGsrc/src/CVS/softproj/FaultDatabase/src/FaultDatabase/FaultDatabase/src/GWTApplication/client/FieldInvalidException.java,v 1.2 2008/01/15 11:08:16 cb Exp $ 036 * 037 * Log : $Log: FieldInvalidException.java,v $ 038 * Log : Revision 1.2 2008/01/15 11:08:16 cb 039 * Log : Ran through PMD and sorted out the javadoc so that we could export the 040 * Log : javadoc to the javadoc repository. 041 * Log : 042 * Log : Revision 1.1.1.1 2007/06/01 08:33:26 cb 043 * Log : Imported using TkCVS 044 * Log : 045 * Log : Revision 1.2 2005/05/18 16:14:27 cb 046 * Log : Modified after running through pmd static analysis tool. Basically I 047 * Log : have cleaned the code up. 048 * Log : 049 * Log : Revision 1.1 2005/05/12 15:53:39 cb 050 * Log : First version of the files 051 * Log : 052 * 053 * =====================================================================*/ 054 055 package GWTApplication.client; 056 057 /** 058 * Thrown when there is a problem verifing a field in a form. 059 */ 060 061 public class FieldInvalidException extends Exception 062 { 063 064 public FieldInvalidException(String Msg) 065 { 066 super(Msg); 067 } 068 } 069