View Javadoc

1   /*$Id: PickleException.java,v 1.3 2004/09/06 16:47:04 nw Exp $
2    * Created on 28-Jul-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 thrown when something goes wrong at the pickler.
16   * @author Noel Winstanley nw@jb.man.ac.uk 28-Jul-2004
17   *@see org.astrogrid.jes.jobscheduler.impl.groovy.XStreamPickler
18   */
19  public class PickleException extends JesException {
20  
21      /*** Construct a new PickleException
22       * @param s
23       */
24      public PickleException(String s) {
25          super(s);
26      }
27  
28      /*** Construct a new PickleException
29       * @param s
30       * @param e
31       */
32      public PickleException(String s, Exception e) {
33          super(s, e);
34      }
35  
36  }
37  
38  
39  /* 
40  $Log: PickleException.java,v $
41  Revision 1.3  2004/09/06 16:47:04  nw
42  javadoc
43  
44  Revision 1.2  2004/07/30 15:42:34  nw
45  merged in branch nww-itn06-bz#441 (groovy scripting)
46  
47  Revision 1.1.2.1  2004/07/28 16:24:23  nw
48  finished groovy beans.
49  moved useful tests from old python package.
50  removed python implemntation
51   
52  */