{
if ( e instanceof ValidationException )
{
for ( ConstraintViolation cv : ( ( ValidationException ) e ).getConstraintViolations() )
{
RequestCycle.get().addMessage( new FieldMessage( cv.getPropertyPath().toString(), cv.getMessage(), MessageLevel.ERROR ) );
}
}
else
{
error( "error." + e.getClass().getSimpleName() );