View Javadoc

1   /*$Id: WorkflowInterfaceException.java,v 1.3 2004/03/03 11:15:23 nw Exp $
2    * Created on 24-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.portal.workflow.intf;
12  
13  /*** Catch all exception type for things that go wrong with the workflow interface.
14   * @author Noel Winstanley nw@jb.man.ac.uk 24-Feb-2004
15   *
16   */
17  public class WorkflowInterfaceException extends Exception {
18      /*** Construct a new WorkflowInterfaceException
19       * 
20       */
21      public WorkflowInterfaceException() {
22          super();
23      }
24      /*** Construct a new WorkflowInterfaceException
25       * @param message
26       */
27      public WorkflowInterfaceException(String message) {
28          super(message);
29      }
30      /*** Construct a new WorkflowInterfaceException
31       * @param cause
32       */
33      public WorkflowInterfaceException(Throwable cause) {
34          super(cause);
35      }
36      /*** Construct a new WorkflowInterfaceException
37       * @param message
38       * @param cause
39       */
40      public WorkflowInterfaceException(String message, Throwable cause) {
41          super(message, cause);
42      }
43  }
44  
45  
46  /* 
47  $Log: WorkflowInterfaceException.java,v $
48  Revision 1.3  2004/03/03 11:15:23  nw
49  tarted up javadocs, reviewed types
50  
51  Revision 1.2  2004/02/25 10:57:43  nw
52  merged in branch nww-itn05-bz#140 (refactor in preparation for changing object model)
53  
54  Revision 1.1.2.1  2004/02/24 21:56:46  nw
55  added an exception type for the interface
56   
57  */