We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38a4d18 commit 52c8f90Copy full SHA for 52c8f90
core/src/main/java/com/adobe/aio/cloudevents/ZonedDateTimeDeserializer.java
@@ -29,7 +29,7 @@ public ZonedDateTime deserialize(
29
try {
30
return ZonedDateTime.parse(jsonParser.getText(), DateTimeFormatter.ISO_OFFSET_DATE_TIME);
31
} catch (DateTimeException e) {
32
- throw new IllegalArgumentException("could not parse");
+ throw new IllegalArgumentException("could not parse", e);
33
}
34
35
0 commit comments