Does anyone successfully parsed given string? I'm aware that this task could be done with a different approach but I would like to understand why it is not parsing...
public static void main(String[] args) throws ParseException {
        String date = "FEBRUARY 4 2015";
        Date date1 = new SimpleDateFormat("MMMM d yyyy").parse(date);
    }