Package naga

Interface ExceptionObserver


public interface ExceptionObserver
Implemented by observers of event exceptions.

The notifyExceptionThrown will be called synchronously whn an exception is thrown.

Author:
Christoffer Lerno
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final ExceptionObserver
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Notify the observer that an exception has been thrown.
  • Field Details

  • Method Details

    • notifyExceptionThrown

      void notifyExceptionThrown(Throwable e)
      Notify the observer that an exception has been thrown.
      Parameters:
      e - the exception that was thrown.