File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/main/java/de/rub/nds/tlsscanner/probe Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 16
16
import de .rub .nds .tlsattacker .core .constants .NamedCurve ;
17
17
import de .rub .nds .tlsattacker .core .constants .ProtocolMessageType ;
18
18
import de .rub .nds .tlsattacker .core .constants .ProtocolVersion ;
19
+ import de .rub .nds .tlsattacker .core .exceptions .ConfigurationException ;
19
20
import de .rub .nds .tlsattacker .core .exceptions .WorkflowExecutionException ;
20
21
import de .rub .nds .tlsattacker .core .protocol .message .AlertMessage ;
21
22
import de .rub .nds .tlsattacker .core .state .State ;
@@ -99,7 +100,7 @@ public List<CipherSuite> getSupportedCipherSuitesWithIntolerance(List<CipherSuit
99
100
WorkflowExecutor workflowExecutor = WorkflowExecutorFactory .createWorkflowExecutor (WorkflowExecutorType .DEFAULT , state );
100
101
try {
101
102
workflowExecutor .executeWorkflow ();
102
- } catch (WorkflowExecutionException ex ) {
103
+ } catch (ConfigurationException | WorkflowExecutionException ex ) {
103
104
LOGGER .warn ("Encountered exception while executing WorkflowTrace!" );
104
105
LOGGER .debug (ex );
105
106
supportsMore = false ;
You can’t perform that action at this time.
0 commit comments