Interface ILcdExceptionHandler


public interface ILcdExceptionHandler
Handler for exceptions. Implementations can handle exceptions the way they want: print the stack trace to the console, pop up a dialog to inform the user, ...
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called to notify this handler that an exception occurred.
  • Method Details

    • handleException

      void handleException(Exception aException)
      Called to notify this handler that an exception occurred.
      Parameters:
      aException - The exception that occurred.