Class ErrorHandler

  • Direct Known Subclasses:
    DialogErrorHandler

    public class ErrorHandler
    extends java.lang.Object
    Default operation for reporting errors while loading.
    • Constructor Summary

      Constructors 
      Constructor Description
      ErrorHandler()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void done()
      Invoked when operation complete.
      void handle​(ErrorMemo e)
      Handle an error.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • handle

        public void handle​(ErrorMemo e)
        Handle an error.

        Default implementation formats and puts in log.

        Parameters:
        e - the error
      • done

        public void done()
        Invoked when operation complete.

        Default implementation doesn't do anything here, everything already logged above.