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 IllegalModificationException extends RuntimeException {
12 public IllegalModificationException() {
13 super();
14 }
15
16 public IllegalModificationException(String message) {
17 super(message);
18 }
19
20 public IllegalModificationException(String message, Throwable cause) {
21 super(message, cause);
22 }
23
24 public IllegalModificationException(Throwable cause) {
25 super(cause);
26 }
27 }
28