WMAttributeAssignmentException.java :  » Workflow-Engines » shark » org » enhydra » shark » api » client » wfmc » wapi » Java Open Source

Java Open Source » Workflow Engines » shark 
shark » org » enhydra » shark » api » client » wfmc » wapi » WMAttributeAssignmentException.java
package org.enhydra.shark.api.client.wfmc.wapi;



public class WMAttributeAssignmentException extends WMWorkflowException {
    static final long serialVersionUID = 3908258638565217467L;
    private String attributeName;

    public WMAttributeAssignmentException(String attributeName) {
        super(new WMError(WMError.WM_ATTRIBUTE_ASSIGNMENT_FAILED));
        this.attributeName = attributeName;
    }

    public String toString() {
        return getClass().getName() + '@' + System.identityHashCode(this)
                + "[attributeName='" + attributeName + "'"
                + ']';
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.