Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8068278

ArrayIndexOutOfBoundsException instead of DateTimeException in j.t.chrono.JapaneseChronology.eraOf()

XMLWordPrintable

    • b50

        The spec for the java.time.chrono.JapaneseChronology.eraOf() asserts that DateTimeException is expected if eraValue is invalid.

        https://docs.oracle.com/javase/8/docs/api/java/time/chrono/JapaneseChronology.html#eraOf-int-

        but in the case of input value Integer.MAX_VALUE: JapaneseChronology.INSTANCE.eraOf(Integer.MAX_VALUE);

        the method throws unexpected java.lang.ArrayIndexOutOfBoundsException:

        java.lang.ArrayIndexOutOfBoundsException: -2147483648
        at java.time.chrono.JapaneseEra.of(JapaneseEra.java:201)
        at java.time.chrono.JapaneseChronology.eraOf(JapaneseChronology.java:377)
        at java.time.chrono.JapaneseChronology.eraOf(JapaneseChronology.java:123)

        Due to this issue the following test will fail after integration:

        api/java_time/chrono/JapaneseChronology/index.html#eraOf

              rriggs Roger Riggs
              ostrizhe Olga Strizhenko (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

                Created:
                Updated:
                Resolved: