I want to parse a timestamp into a OffsetDateTime represented as following:
2019-08-02T30:17:48.128+0200
Note that there is no : between the hours and minutes in the offset notation, as expected by OffsetDateTime.
When feeding this to OffsetDateTime.parse("2019-08-02T30:17:48.128+0200"), I get a java.time.format.DateTimeParseException.