Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package org.cloudfoundry.multiapps.common;

/**
* A runtime exception that signals Flowable to move the job to dead-letter state without logging anything to the operation log or progress
* message database. Used when a step returns StepPhase.RETRY to stop the process cycle cleanly.
*/
public class StepPhaseRetryException extends RuntimeException {

public StepPhaseRetryException(String message) {
super(message);
}

}
Loading