package org.camunda.demo.spielwiese.spielwiese2; import org.camunda.bpm.engine.delegate.DelegateExecution; import org.camunda.bpm.engine.delegate.JavaDelegate; public class FailingDelegate implements JavaDelegate { @Override public void execute(DelegateExecution execution) throws Exception { if (true) { throw new RuntimeException("kaputt"); } } }