Skip to content

Commit

Permalink
Fix error code
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Apr 16, 2024
1 parent 02f30e5 commit 93be5b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion error_code_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ error-tags:
- com.exasol.support
- com.exasol.clusterlogs
- com.exasol.bucketfs.testcontainers
highest-index: 25
highest-index: 26
2 changes: 1 addition & 1 deletion src/main/java/com/exasol/containers/ExasolContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ public Connection createConnectionForUser(final String user, final String passwo
try {
return driver.connect(url, info);
} catch (final SQLException exception) {
throw new UncheckedSqlException(ExaError.messageBuilder("")
throw new UncheckedSqlException(ExaError.messageBuilder("E-ETC-26")
.message("Failed to connect to {{jdbc url}}: {{error message}}", url, exception.getMessage())
.toString(), exception);
}
Expand Down

0 comments on commit 93be5b1

Please sign in to comment.