1 /*$Id: ConversionException.java,v 1.2 2004/02/27 00:46:03 nw Exp $
2 * Created on 25-Feb-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.job;
12
13 import org.astrogrid.jes.JesException;
14
15 /*** Exception type thrown when marshalling to xml
16 * @author Noel Winstanley nw@jb.man.ac.uk 25-Feb-2004
17 *
18 */
19 public class ConversionException extends JesException {
20 /*** Construct a new ConversionException
21 * @param s
22 */
23 public ConversionException(String s) {
24 super(s);
25 }
26 /*** Construct a new ConversionException
27 * @param s
28 * @param e
29 */
30 public ConversionException(String s, Exception e) {
31 super(s, e);
32 }
33 }
34
35
36 /*
37 $Log: ConversionException.java,v $
38 Revision 1.2 2004/02/27 00:46:03 nw
39 merged branch nww-itn05-bz#91
40
41 Revision 1.1.2.1 2004/02/27 00:24:43 nw
42 refined tool interface
43
44 */