View Javadoc

1   /*$Id: ToolValidationException.java,v 1.2 2004/03/11 13:53:36 nw Exp $
2    * Created on 11-Mar-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.portal.workflow.intf;
12  
13  /*** Thrown when a tool instance does not match the definition given in an application description.
14   * @see ApplicationDescription#validate
15   * @author Noel Winstanley nw@jb.man.ac.uk 11-Mar-2004
16   *
17   */
18  public class ToolValidationException extends Exception {
19  
20      /*** Construct a new InvalidToolException
21       * @param message
22       */
23      public ToolValidationException(String message) {
24          super(message);
25      }
26      /*** Construct a new InvalidToolException
27       * @param cause
28       */
29      public ToolValidationException(Throwable cause) {
30          super(cause);
31      }
32      /*** Construct a new InvalidToolException
33       * @param message
34       * @param cause
35       */
36      public ToolValidationException(String message, Throwable cause) {
37          super(message, cause);
38      }
39  }
40  
41  
42  /* 
43  $Log: ToolValidationException.java,v $
44  Revision 1.2  2004/03/11 13:53:36  nw
45  merged in branch bz#236 - implementation of interfaces
46  
47  Revision 1.1.2.1  2004/03/11 13:36:46  nw
48  tidied up interfaces, documented
49   
50  */