1 package org.smartcomps.twister.engine.exception;
2
3 /***
4 * Exception for the standard BPEL fault bpws:conflictingReceive.
5 */
6 public class ConflictingReceiveException extends EngineException {
7
8 public ConflictingReceiveException(String s) {
9 super(s);
10 }
11
12 public ConflictingReceiveException(String s, Throwable throwable) {
13 super(s, throwable);
14 }
15
16 public ConflictingReceiveException(Throwable throwable) {
17 super(throwable);
18 }
19 }
This page was automatically generated by Maven