1
2
3
4
5
6
7
8
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 }