Package com.opensymphony.workflow

Examples of com.opensymphony.workflow.InvalidActionException


        if(!isActive())
        {
          if(getEntryState() == WorkflowEntry.UNKNOWN)
            throw new WorkflowException("The workflow with id " + workflowId + " is in an unknown state - the database could be down or the workflow corrupt");
          else
            throw new InvalidActionException("Workflow " + workflowId + " is no longer active");
        }
        if(currentWorkflows.contains(id))
        {
          throw new WorkflowException("The selected workflow is executing...");
        }
View Full Code Here

TOP

Related Classes of com.opensymphony.workflow.InvalidActionException

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.