java.lang.IllegalArgumentException в Android с DateFormat

Вот мой фрагмент кода

здесь дата в формате 10-сен-2013 09:53:37

TextView tvDate = (TextView) convertView.findViewById(R.id.entered_date);
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
tvDate.setText(dateFormat.format(salesReportItems.getDate().toString()));
TextView tvCardType = (TextView) convertView.findViewById(R.id.card_type);
tvCardType.setText(salesReportItems.getCardType().toString());

Пожалуйста, помогите мне разобраться в этом вопросе. Здесь моя ошибка.

Уважаемый Пиюш,

Вот, когда я использовал ваш код

Ответы на вопрос(7)

Ваш ответ на вопрос