Skip to content

Commit ffcb887

Browse files
committed
[ENH] 🔊 Make StoreException more verbose
Signed-off-by: ahliit <cecile.chemin@insee.fr>
1 parent cf866d4 commit ffcb887

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sugoi-api-model/src/main/java/fr/insee/sugoi/model/exceptions/StoreException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
public class StoreException extends RuntimeException {
1717

1818
public StoreException(String message, Throwable exception) {
19-
super(message, exception);
19+
super(message + " : " + exception.getMessage(), exception);
2020
}
2121
}

0 commit comments

Comments
 (0)