Skip to content

Commit

Permalink
KyuubiSQLException
Browse files Browse the repository at this point in the history
  • Loading branch information
pan3793 committed Nov 28, 2024
1 parent 63861af commit b6e03a6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,11 +211,11 @@ public Date getDate(int columnIndex) throws SQLException {
try {
return Date.valueOf((String) obj);
} catch (Exception e) {
throw new SQLException(
throw new KyuubiSQLException(
"Illegal conversion to Date from column " + columnIndex + " [" + obj + "]", e);
}
}
throw new SQLException(
throw new KyuubiSQLException(
"Illegal conversion to Date from column " + columnIndex + " [" + obj + "]");
}

Expand Down

0 comments on commit b6e03a6

Please sign in to comment.