Package org.openengsb.core.workflow.api

Examples of org.openengsb.core.workflow.api.ProcessBagException


     *
     * @throws ProcessBagException if the key is already present
     */
    public void addProperty(String key, Object value) throws ProcessBagException {
        if (properties.containsKey(key)) {
            throw new ProcessBagException(key + " already used!");
        } else {
            properties.put(key, value);
        }
    }
View Full Code Here

TOP

Related Classes of org.openengsb.core.workflow.api.ProcessBagException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.