Is there a magic value to place in messages.properties to capture the error condition where a NullPointerException is thrown during a setter method, In the same way there is [field].typeMismatch=[message], or does one have to suck up the NullPointerException and handle the situation in a validate method which would add an Error to the Errors?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

As far as I know, you'd have to handle it yourself.

An NPE being thrown by a setter is highly unusual situation - a well-designed class would not normally do that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.