01: package org.wfmc.wapi;
02:
03: /**
04: * Indicates that an attribute does not exist, or is read-only.
05: *
06: * @author Adrian Price
07: */
08: public class WMInvalidAttributeException extends
09: WMInvalidObjectException {
10: public WMInvalidAttributeException(String attributeName) {
11: super(WMError.WM_INVALID_ATTRIBUTE, attributeName);
12: }
13: }
|