Class LoggingErrorHandling

    • Method Detail

      • displayError

        public void displayError​(ICellEditor cellEditor,
                                 Exception e)
        If an error occurs on conversion/validation of data, this method will be called for showing that error to the user. Usually the message contained within the given Exception will be shown to the user.

        This implementation will call its underlying IEditErrorHandler. After the error is handled by its underlying IEditErrorHandler, the error will be logged as a warning.

        Specified by:
        displayError in interface IEditErrorHandler
        Overrides:
        displayError in class AbstractEditErrorHandler
        Parameters:
        cellEditor - The ICellEditor on which the conversion/validation error occurred. Needed to add error styling or special handling.
        e - The Exception that contains information about the conversion/validation error. Used to show a more detailed description on the error to the user.