01: package org.jbpm.svc;
02:
03: import org.jbpm.JbpmException;
04:
05: public class JbpmServiceException extends JbpmException {
06:
07: private static final long serialVersionUID = 1L;
08:
09: public JbpmServiceException() {
10: super ();
11: }
12:
13: public JbpmServiceException(String message, Throwable cause) {
14: super (message, cause);
15: }
16:
17: public JbpmServiceException(String message) {
18: super (message);
19: }
20:
21: public JbpmServiceException(Throwable cause) {
22: super(cause);
23: }
24: }
|