Skip to content

Commit

Permalink
[ENH] 🔊 Make StoreException more verbose
Browse files Browse the repository at this point in the history
Signed-off-by: ahliit <[email protected]>
  • Loading branch information
CChemin committed Apr 11, 2023
1 parent cf866d4 commit ffcb887
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
public class StoreException extends RuntimeException {

public StoreException(String message, Throwable exception) {
super(message, exception);
super(message + " : " + exception.getMessage(), exception);
}
}

0 comments on commit ffcb887

Please sign in to comment.