2930313233343536
public Date read (String value) throws YamlException { try { return dateParser.parse(value); } catch (ParseException ex) { throw new YamlException("Invalid date: " + value, ex); } }
2728293031323334