01: package org.wfmc.wapi;
02:
03: public class WMAttributeAssignmentException extends WMWorkflowException {
04: private static final long serialVersionUID = 3908258638565217467L;
05: private final String attributeName;
06:
07: public WMAttributeAssignmentException(String attributeName) {
08: super (new WMError(WMError.WM_ATTRIBUTE_ASSIGNMENT_FAILED));
09: this .attributeName = attributeName;
10: }
11:
12: public String toString() {
13: return getClass().getName() + '@'
14: + System.identityHashCode(this ) + "[attributeName='"
15: + attributeName + '\'' + ']';
16: }
17: }
|