Skip to content

Commit 82a8fce

Browse files
committed
Add more constructors to ConcurrentStepException
1 parent e711b15 commit 82a8fce

File tree

1 file changed

+10
-0
lines changed
  • framework/execution_framework/plugins/org.eclipse.gemoc.executionframework.engine/src/org/eclipse/gemoc/executionframework/engine/concurrency

1 file changed

+10
-0
lines changed

framework/execution_framework/plugins/org.eclipse.gemoc.executionframework.engine/src/org/eclipse/gemoc/executionframework/engine/concurrency/ConcurrentStepException.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,18 @@
22

33
public class ConcurrentStepException extends Exception {
44

5+
private static final long serialVersionUID = 9140570714416166932L;
6+
57
public ConcurrentStepException(Exception e) {
68
super(e);
79
}
10+
11+
public ConcurrentStepException(String message, Exception cause) {
12+
super(message, cause);
13+
}
14+
15+
public ConcurrentStepException(String message) {
16+
super(message);
17+
}
818

919
}

0 commit comments

Comments
 (0)