View Javadoc

1   /*$Id: ScriptEngineException.java,v 1.2 2004/07/30 15:42:34 nw Exp $
2    * Created on 12-May-2004
3    *
4    * Copyright (C) AstroGrid. All rights reserved.
5    *
6    * This software is published under the terms of the AstroGrid 
7    * Software License version 1.2, a copy of which has been included 
8    * with this distribution in the LICENSE.txt file.  
9    *
10  **/
11  package org.astrogrid.jes.jobscheduler.impl.groovy;
12  
13  import org.astrogrid.jes.JesException;
14  
15  /*** exception class representing stuff thrown by scripting engine.
16   * @author Noel Winstanley nw@jb.man.ac.uk 12-May-2004
17   *
18   */
19  public class ScriptEngineException extends JesException {
20      /*** Construct a new ScriptEngineException
21       * @param s
22       */
23      public ScriptEngineException(String s) {
24          super(s);
25      }
26      /*** Construct a new ScriptEngineException
27       * @param s
28       * @param e
29       */
30      public ScriptEngineException(String s, Exception e) {
31          super(s, e);
32      }
33  }
34  
35  
36  /* 
37  $Log: ScriptEngineException.java,v $
38  Revision 1.2  2004/07/30 15:42:34  nw
39  merged in branch nww-itn06-bz#441 (groovy scripting)
40  
41  Revision 1.1.2.1  2004/07/26 15:51:19  nw
42  first stab at a groovy scheduler.
43  transcribed all the classes in the python prototype, and took copies of the
44  classes in the 'scripting' package.
45  
46  Revision 1.1  2004/07/09 09:30:28  nw
47  merged in scripting workflow interpreter from branch
48  nww-x-workflow-extensions
49  
50  Revision 1.1.2.1  2004/05/21 11:25:19  nw
51  first checkin of prototype scrpting workflow interpreter
52   
53  */