org.erights.e.develop.exception
Interface ExceptionNoticer

All Known Implementing Classes:
TraceExceptionNoticer

public interface ExceptionNoticer

Untamed: Interface to be implemented by the entity that is to be notified of all exceptions reported to ExceptionMgr or which are uncaught.

See Also:
org.erights.e.develop.exception.ExceptionMgr

Method Summary
 void noticeReportedException(String msg, Throwable t)
          Enabled: Notification of a reported exception.
 void noticeUncaughtException(String msg, Throwable t)
          Enabled: Notification of an uncaught exception.
 

Method Detail

noticeReportedException

public void noticeReportedException(String msg,
                                    Throwable t)
Enabled: Notification of a reported exception.

Parameters:
msg - The message that accompanied the exception report
t - The actual exception itself.

noticeUncaughtException

public void noticeUncaughtException(String msg,
                                    Throwable t)
Enabled: Notification of an uncaught exception.

Parameters:
msg - Message describing the circumstances
t - The actual exception itself.


comments?