Revision 39105 branches/v2_0_0_prep/libraries/org.gvsig.exportto/org.gvsig.exportto.swing/org.gvsig.exportto.swing.impl/src/main/java/org/gvsig/exportto/swing/impl/wizard/DefaultWizardContainer.java

View differences:

DefaultWizardContainer.java
30 30
import org.gvsig.exportto.swing.spi.ExporttoSwingProviderPanel;
31 31
import org.gvsig.gui.beans.wizard.panel.NotContinueWizardException;
32 32
import org.gvsig.gui.beans.wizard.panel.OptionPanel;
33
import org.gvsig.i18n.Messages;
33 34

  
34 35
/**
35 36
 * @author gvSIG Team
......
57 58
        try {
58 59
            if (!this.exporttoSwingProviderPanel.isValidPanel()) {
59 60
                throw new NotContinueWizardException(
60
                    "Error validating the form", exporttoSwingProviderPanel,
61
                    Messages.getText("_Invalid_values_in_form"),
62
                    exporttoSwingProviderPanel,
61 63
                    false);
62 64
            }
63 65
        } catch (ExporttoPanelValidationException e) {
64
            LOG.error("Error validating the form", e);
65
            throw new NotContinueWizardException("Error validating the form",
66
            LOG.info("Invalid form values.");
67
            throw new NotContinueWizardException(
68
                Messages.getText("_Invalid_values_in_form"),
66 69
                e, exporttoSwingProviderPanel);
67 70
        }
68 71
    }

Also available in: Unified diff