Interface BootErrorHandler

All Known Implementing Classes:
BootErrorHandlerConsole, BootErrorHandlerGui

public interface BootErrorHandler
Callback interface to handle boot-time application errors.
Version:
$Id$
  • Method Details

    • handleFatalError

      void handleFatalError(String message)
      Called if fatal error has occurred.
      Parameters:
      message - error message
    • handleFatalError

      void handleFatalError(String message, Throwable t)
      Called if fatal error has occurred.
      Parameters:
      message - error message
      t - an error
    • handleError

      boolean handleError(String message, Exception e)
      Called if non-fatal error has occurred and application boot may be continued.
      Parameters:
      message - error message
      e - an error
      Returns:
      true if user wish to continue application start
    • handleError

      boolean handleError(String message, IntegrityCheckReport integrityCheckReport)
      Called if an error has been detected during plug-ins integrity check and application boot may be continued.
      Parameters:
      message - error message
      integrityCheckReport - integrity check report
      Returns:
      true if user wish to continue application start