View Javadoc

1   /*
2    * Copyright (c) 2005, The K-Wf Grid Consortium
3    * Fraunhofer Institute for Computer Architecture and Software Technology
4    * See http://www.kwfgrid.eu and http://www.first.fraunhofer.de for more details.
5    */
6   package net.kwfgrid.gworkflowdl.protocol;
7   
8   /***
9      Exception that may occur when executing a modification of a workflow.
10   */
11  public class IncompatibleVersionsException extends IllegalModificationException {
12      public IncompatibleVersionsException() {
13  	super();
14      }
15  
16      public IncompatibleVersionsException(String message) {
17  	super(message);
18      }
19  
20      public IncompatibleVersionsException(String message, Throwable cause) {
21  	super(message, cause);
22      }
23  
24      public IncompatibleVersionsException(Throwable cause) {
25  	super(cause);
26      }
27  }
28