tags:

views:

29

answers:

1

Hello, when I specify empty on a date field (which has time part filled in, so not null), the following message is displayed in the UI

Failed to convert property value of type java.lang.String to required type org.joda.time.DateTime for property responseRequiredDate; nested exception is java.lang.IllegalArgumentException: Invalid format: "structT00:00:00"

is there a way to customize this message. Or do one need custom exception handling as described here link text

thanks.

A: 

That is an exception. AFAIK you can't customize it other than by catching it and outputting what you want.

hvgotcodes