01: package org.wfmc.wapi;
02:
03: public class WMExecuteException extends WMWorkflowException {
04: private static final long serialVersionUID = -6582786780183780238L;
05:
06: public WMExecuteException(String exceptionName) {
07: super (new WMError(WMError.WM_EXECUTE_FAILED), exceptionName);
08: }
09:
10: public String getExceptionName() {
11: return getMessage();
12: }
13: }
|