View Javadoc

1   /*
2    * Copyright 2010 Fraunhofer Gesellschaft, Munich, Germany,
3    * for its Fraunhofer Institute for Computer Architecture and Software
4    * Technology (FIRST), Berlin, Germany. All rights reserved.
5    * http://www.first.fraunhofer.de/
6    */
7   
8   package net.kwfgrid.gworkflowdl.structure;
9   
10  /***
11   * Signals that the workflow description has the wrong format.
12   * @author Andreas Hoheisel
13   *         (<a href="http://www.andreas-hoheisel.de">www.andreas-hoheisel.de</a>)
14   * @version $Id: WorkflowFormatException.java 1344 2010-01-27 15:36:48Z andreas.hoheisel@first.fraunhofer.de $
15   */
16  public class WorkflowFormatException extends Exception{
17  
18      /***
19       * Constructs a new <code>WorkflowFormatException</code> with <code>null</code> as its detail message.
20       * The cause is not initialized, and may subsequently be initialized by a
21       * call to {@link #initCause}.
22       */
23      public WorkflowFormatException() {
24      }
25  
26      /***
27       * Constructs a new <code>WorkflowFormatException</code> with the specified detail message.  The
28       * cause is not initialized, and may subsequently be initialized by
29       * a call to {@link #initCause}.
30       *
31       * @param message the detail message. The detail message is saved for
32       *                later retrieval by the {@link #getMessage()} method.
33       */
34      public WorkflowFormatException(String message) {
35          super(message);
36      }
37  
38      public WorkflowFormatException(String message, Exception ex) {
39          super(message, ex);
40      }
41  
42  }