Skip to content

Commit

Permalink
rename exception var
Browse files Browse the repository at this point in the history
  • Loading branch information
ern authored Jul 7, 2023
1 parent 8f0e0c4 commit 8b8b622
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public void delete(T entity) {

try {
findById(entity.getId()).ifPresent(session::delete);
} catch (Exception he) {
} catch (Exception e) {
log.error("Failed to delete the entity: " + he.getMessage());
}
}
Expand Down

0 comments on commit 8b8b622

Please sign in to comment.