View Javadoc

1   /*
2    * $Id: ApplicationStillRunningException.java,v 1.2 2005/07/05 08:27:00 clq2 Exp $
3    * 
4    * Created on 03-Jun-2005 by Paul Harrison (pharriso@eso.org)
5    * Copyright 2005 ESO. All rights reserved.
6    *
7    * This software is published under the terms of the ESO 
8    * Software License, a copy of which has been included 
9    * with this distribution in the LICENSE.txt file.  
10   *
11   */ 
12  
13  package org.astrogrid.applications;
14  
15  
16  /***
17   * Exception thrown when an operation is attempted that is inappropriate for an  application that is still running. Eg. trying to fetch the results too early.
18   * @author Paul Harrison (pharriso@eso.org) 03-Jun-2005
19   * @version $Name: HEAD $
20   * @since initial Coding
21   */
22  public class ApplicationStillRunningException extends CeaException {
23  
24     /***
25      * @param message
26      */
27     public ApplicationStillRunningException(String message) {
28        super(message);
29     }
30  
31     /***
32      * @param message
33      * @param cause
34      */
35     public ApplicationStillRunningException(String message, Throwable cause) {
36        super(message, cause);
37     }
38  
39  }
40  
41  
42  /*
43   * $Log: ApplicationStillRunningException.java,v $
44   * Revision 1.2  2005/07/05 08:27:00  clq2
45   * paul's 559b and 559c for wo/apps and jes
46   *
47   * Revision 1.1.4.1  2005/06/09 08:47:32  pah
48   * result of merging branch cea_pah_559b into HEAD
49   *
50   * Revision 1.1.2.1  2005/06/03 16:01:48  pah
51   * first try at getting commandline execution log bz#1058
52   *
53   */