001 /** =====================================================================
002 *
003 * File Name : $Id: UnableToUpdateFaultException.java,v 1.1 2007/07/24 08:26: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: UnableToUpdateFaultException.java,v 1.1 2007/07/24 08:26:11 cb Exp $
032 *
033 * @Author : $Author: cb $
034 *
035 * Header : $Header: /opt/INGsrc/src/CVS/softproj/FaultDatabase/src/FaultDatabase/FaultDatabase/src/GWTApplication/client/UnableToUpdateFaultException.java,v 1.1 2007/07/24 08:26:11 cb Exp $
036 *
037 * Log : $Log: UnableToUpdateFaultException.java,v $
038 * Log : Revision 1.1 2007/07/24 08:26:11 cb
039 * Log : First version
040 * Log :
041 * Log : Revision 1.2 2007/07/13 10:54:03 cb
042 * Log : Complete interface prototype
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 there is a problem updating a fault in the database after editing it
063 */
064
065 public class UnableToUpdateFaultException extends SerializableException
066 {
067 public UnableToUpdateFaultException() {
068 }
069
070 public UnableToUpdateFaultException(String msg) {
071 super(msg);
072 }
073
074
075 }
076