I am trying to parse a date string using the following pattern: yyMMdd and the STRICT resolver as follows:
yyMMdd
STRICT
DateTimeFormatter format
The strict resolver requires an era to go with YearOfEra. Change your pattern to use "u" instead of "y" and it will work, ie. "uuMMdd".