Package me.kafeitu.activiti

Source Code of me.kafeitu.activiti.ErrorBoundaryEventAttachToTaskService

package me.kafeitu.activiti;

import org.activiti.engine.delegate.BpmnError;
import org.activiti.engine.delegate.DelegateExecution;
import org.activiti.engine.delegate.JavaDelegate;

public class ErrorBoundaryEventAttachToTaskService implements JavaDelegate {

  @Override
  public void execute(DelegateExecution execution) throws Exception {
    // TODO throw error for error boundary event
    throw new BpmnError("errorOne");
  }

}
TOP

Related Classes of me.kafeitu.activiti.ErrorBoundaryEventAttachToTaskService

TOP
Copyright © 2018 www.massapi.com. 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.