We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68641f0 commit f143117Copy full SHA for f143117
TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/workflow/DefaultWorkflowExecutor.java
@@ -88,6 +88,9 @@ public void executeWorkflow() throws WorkflowExecutionException {
88
89
try {
90
action.execute(state);
91
+ } catch (UnsupportedOperationException E) {
92
+ LOGGER.warn("Unsupported operation!", E);
93
+ state.setExecutionException(E);
94
} catch (PreparationException | WorkflowExecutionException ex) {
95
state.setExecutionException(ex);
96
throw new WorkflowExecutionException("Problem while executing Action:" + action.toString(), ex);
0 commit comments