1
2
3
4
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