View Javadoc

1   /*
2    * $Id: ApplicationEnvironmentUnavailableException.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   * Exception thrown when the application environment is not retrievable.
17   * @author Paul Harrison (pharriso@eso.org) 03-Jun-2005
18   * @version $Name: HEAD $
19   * @since initial Coding
20   */
21  public class ApplicationEnvironmentUnavailableException extends CeaException {
22  
23     /***
24      * @param message
25      */
26     public ApplicationEnvironmentUnavailableException(String message) {
27        super(message);
28     }
29  
30     /***
31      * @param message
32      * @param cause
33      */
34     public ApplicationEnvironmentUnavailableException(String message,
35           Throwable cause) {
36        super(message, cause);
37     }
38  
39  }
40  
41  
42  /*
43   * $Log: ApplicationEnvironmentUnavailableException.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   */