Skip to content

Commit

Permalink
fix(plc4j): Hopefully fixed the code for detecting the libpcap version.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdutz committed Feb 26, 2022
1 parent f4901fa commit e44a84a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public ConditionEvaluationResult evaluateExecutionCondition(ExtensionContext ext
return ConditionEvaluationResult.disabled("Test disabled due to too old libpcap version. Please install at least version 1.1.0 to support all features.");
}
}
} catch(Exception e) {
} catch(Throwable e) {
logger.info("Error detecting libpcap version.", e);
}
if(SystemUtils.IS_OS_WINDOWS) {
Expand Down

0 comments on commit e44a84a

Please sign in to comment.