Skip to content

Commit f143117

Browse files
committed
unsupported operations now do not stop the execution of the worklfowtrace
1 parent 68641f0 commit f143117

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/workflow/DefaultWorkflowExecutor.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ public void executeWorkflow() throws WorkflowExecutionException {
8888

8989
try {
9090
action.execute(state);
91+
} catch (UnsupportedOperationException E) {
92+
LOGGER.warn("Unsupported operation!", E);
93+
state.setExecutionException(E);
9194
} catch (PreparationException | WorkflowExecutionException ex) {
9295
state.setExecutionException(ex);
9396
throw new WorkflowExecutionException("Problem while executing Action:" + action.toString(), ex);

0 commit comments

Comments
 (0)