Package com.founder.fix.fixflow.core.exception

Examples of com.founder.fix.fixflow.core.exception.FixFlowBizException


            task.setClaimTime(null);
            Context.getCommandContext().getTaskManager()
                .saveTaskInstanceEntity(task);
          }
          else{
            throw new FixFlowBizException("任务 " + taskId + " 没有候选处理者不能被释放!");
          }
         
         
         
        }
View Full Code Here


   
    if (task == null) {
      throw new FixFlowException("无法找到编号为: " + taskId + " 的任务!");
    }
    if(task.hasEnded()){
      throw new FixFlowBizException("当前的任务已经结束,无法继续处理!");
    }
   
    if (Authentication.getAuthenticatedUserId() != null) {
     
     
View Full Code Here

    // 获取正在操作的任务命令对象实例
    TaskCommandInst taskCommand = getTaskCommandInst();

    if (taskInstance.hasEnded()) {
      throw new FixFlowBizException("当前的任务已经结束,无法继续处理!");
    }

    TaskManager taskManager=commandContext.getTaskManager();
   
    TaskInstance taskInstanceQueryRollBack = taskManager.findTaskById(rollBackTaskId);
View Full Code Here

TOP

Related Classes of com.founder.fix.fixflow.core.exception.FixFlowBizException

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.