Skip to content

Commit ef49e6c

Browse files
author
Justin Lu
committedSep 21, 2023
8316629: j.text.DateFormatSymbols setZoneStrings() exception is unhelpful
Reviewed-by: naoto
1 parent 496264c commit ef49e6c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/java.base/share/classes/java/text/DateFormatSymbols.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,8 @@ public void setZoneStrings(String[][] newZoneStrings) {
612612
for (int i = 0; i < newZoneStrings.length; ++i) {
613613
int len = newZoneStrings[i].length;
614614
if (len < 5) {
615-
throw new IllegalArgumentException();
615+
throw new IllegalArgumentException(String.format(
616+
"Row %s of the input array does not have a length of at least 5", i));
616617
}
617618
aCopy[i] = Arrays.copyOf(newZoneStrings[i], len);
618619
}

0 commit comments

Comments
 (0)
Please sign in to comment.