Obtains an ISO local date from the era, year-of-era, month-of-year
and day-of-month fields.
@param era the ISO era, not null
@param yearOfEra the ISO year-of-era
@param month the ISO month-of-year
@param dayOfMonth the ISO day-of-month
@return the ISO local date, not null
@throws DateTimeException if unable to create the date
@throws ClassCastException if the type of {@code era} is not {@code IsoEra}
LocalDatedate(Era era, int yearOfEra, int month, int dayOfMonth)
Obtains an ISO local date from the era, year-of-era, month-of-year and day-of-month fields.
@param era the ISO era, not null @param yearOfEra the ISO year-of-era @param month the ISO month-of-year @param dayOfMonth the ISO day-of-month @return the ISO local date, not null @throws DateTimeException if unable to create the date @throws ClassCastException if the type of {@code era} is not {@code IsoEra}