01: package org.enhydra.shark.api.client.wfmc.wapi;
02:
03: public class WMInvalidActivityInstanceException extends
04: WMInvalidObjectException {
05: static final long serialVersionUID = 1738151149117001141L;
06:
07: /**
08: * Constructs a new WMInvalidActivityInstanceException. This exception is
09: * thrown when an activity instance cannot be located by its definition ID
10: * or its instance ID, depending on which was passed to the finder method.
11: * @param activityId The ID of the activity definition or the activity
12: * instance, depending on the context.
13: */
14: public WMInvalidActivityInstanceException(String activityId) {
15: super(WMError.WM_INVALID_ACTIVITY_INSTANCE, activityId);
16: }
17: }
|