I have a requirement to provide users with a single text field to specify time. The time must be in [0-23]:[0-59] format ( in the US, military format). The inputText field is bound to a java.util.Date in the domain model.
In cases where users enter an invalid time, a ConverterException prevents validation. I would like to avoid the following : * letting the exception occur, and handling it at the dep. desc. level * swallowing exceptions in the Converter, and validating the submittedValue * throwing a ValidatorException from a Converter Must I do this manually in an action ? Dennis Byrne

