org.erights.e.develop.trace
Class TraceExceptionNoticer

java.lang.Object
  |
  +--org.erights.e.develop.trace.TraceExceptionNoticer
All Implemented Interfaces:
ExceptionNoticer

class TraceExceptionNoticer
extends Object
implements ExceptionNoticer

Class for exception handling of trace.


Constructor Summary
(package private) TraceExceptionNoticer()
           
 
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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TraceExceptionNoticer

TraceExceptionNoticer()
Method Detail

noticeReportedException

public void noticeReportedException(String msg,
                                    Throwable t)
Description copied from interface: ExceptionNoticer
Enabled: Notification of a reported exception.

Specified by:
noticeReportedException in interface ExceptionNoticer
Parameters:
msg - The message that accompanied the exception report
t - The actual exception itself.

noticeUncaughtException

public void noticeUncaughtException(String msg,
                                    Throwable t)
Description copied from interface: ExceptionNoticer
Enabled: Notification of an uncaught exception.

Specified by:
noticeUncaughtException in interface ExceptionNoticer
Parameters:
msg - Message describing the circumstances
t - The actual exception itself.


comments?