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 79d69ff commit e7f62f5Copy full SHA for e7f62f5
src/main/java/org/utplsql/cli/datasource/TestedDataSourceProvider.java
@@ -58,7 +58,7 @@ private void setThickOrThinJdbcUrl(OracleDataSource ds) throws SQLException {
58
try (Connection ignored = ds.getConnection()) {
59
logger.info("Use connection string {}", possibility.getMaskedConnectString(config));
60
return;
61
- } catch (UnsatisfiedLinkError | Exception e) {
+ } catch (Error | Exception e) {
62
errors.add(possibility.getMaskedConnectString(config) + ": " + e.getMessage());
63
lastException = e;
64
}
0 commit comments