Skip to content

Commit 52c8f90

Browse files
committed
review comment
1 parent 38a4d18 commit 52c8f90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/adobe/aio/cloudevents/ZonedDateTimeDeserializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public ZonedDateTime deserialize(
2929
try {
3030
return ZonedDateTime.parse(jsonParser.getText(), DateTimeFormatter.ISO_OFFSET_DATE_TIME);
3131
} catch (DateTimeException e) {
32-
throw new IllegalArgumentException("could not parse");
32+
throw new IllegalArgumentException("could not parse", e);
3333
}
3434
}
3535
}

0 commit comments

Comments
 (0)