View Javadoc

1   /*
2    * @(#)WorkflowException.java   1.0
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.3, a copy of which has been included 
8    * with this distribution in the LICENSE.txt file.  
9    *
10   */
11  
12  package org.astrogrid.portal.workflow;
13  
14  import org.astrogrid.AstroGridException;
15  import org.astrogrid.i18n.*;
16  
17  /***
18   * The <code>WorkflowException</code> class represents... 
19   * <p>
20   *
21   * <p>
22   * The class... 
23   * 
24   *
25   * @author  Jeff Lusted
26   * @version 1.0 08-Sep-2003
27   * @see     
28   * @see     
29   * @since   AstroGrid 1.3
30   */
31  public class WorkflowException extends AstroGridException {
32  
33      public WorkflowException( AstroGridMessage message ) { 
34          super( message ) ;
35      }
36  
37      public WorkflowException( AstroGridMessage message, Exception exception ) {
38          super( message, exception ) ;
39      }
40  
41  }