001 /** ===================================================================== 002 * 003 * File Name : $Id: UnableToCreateFaultException.java,v 1.1 2007/09/06 06:53:11 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: UnableToCreateFaultException.java,v 1.1 2007/09/06 06:53:11 cb Exp $ 032 * 033 * @Author : $Author: cb $ 034 * 035 * Header : $Header: /opt/INGsrc/src/CVS/softproj/FaultDatabase/src/FaultDatabase/FaultDatabase/src/GWTApplication/client/UnableToCreateFaultException.java,v 1.1 2007/09/06 06:53:11 cb Exp $ 036 * 037 * Log : $Log: UnableToCreateFaultException.java,v $ 038 * Log : Revision 1.1 2007/09/06 06:53:11 cb 039 * Log : Furst version 040 * Log : 041 * Log : Revision 1.1 2007/07/24 08:26:11 cb 042 * Log : First version 043 * Log : 044 * Log : Revision 1.1.1.1 2007/06/01 08:33:26 cb 045 * Log : Imported using TkCVS 046 * Log : 047 * Log : Revision 1.2 2005/05/18 16:14:27 cb 048 * Log : Modified after running through pmd static analysis tool. Basically I 049 * Log : have cleaned the code up. 050 * Log : 051 * Log : Revision 1.1 2005/05/12 15:53:39 cb 052 * Log : First version of the files 053 * Log : 054 * 055 * =====================================================================*/ 056 057 package GWTApplication.client; 058 059 import com.google.gwt.user.client.rpc.*; 060 061 /** 062 * Thrown when we are unable to create a fault 063 */ 064 065 public class UnableToCreateFaultException extends SerializableException 066 { 067 public UnableToCreateFaultException() { 068 } 069 070 public UnableToCreateFaultException(String msg) { 071 super(msg); 072 } 073 074 075 } 076