org.camunda.bpm.engine.MismatchingMessageCorrelationException: Cannot correlate message "my STring " No process definition or execution matches the parameters
even i am handling it like this
try {
// .correlate() this is producing the above exception
}
catch(MismatchingMessageCorrelationException e){
log.error(“handle this excption {}”, e.getMessage());
}
If you are getting an error, you should catch and handle the error. As per your scenario, you catch the exception in code, how the process will move further and it will never gets completed.