Exception stacktrace displayed in tooltip when mouse over button

Hi

A exception stacktrace is displayed in the tooltip when I mouse over a button (see attached image). Does anyone know why?

Regards,
Mattias
11597.jpg

Yeah, if validation fails, validate() throws an exception. Also commit() calls validate(). Catch the exception to avoid the problem.

Button commit = new Button("Commit");
commit.addListener(new Button.ClickListener() {
    public void buttonClick(ClickEvent event) {
        try {
            form.commit();
        } catch (EmptyValueException e) {
            // A required value was missing
        }
    }
});

See
on-line example
.

Thanks for your help! I must say that so far I’m really impressed with the amount of documentation and the quality of the documentation around this product and the quick responses here on the forum!