|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IErrorLogger
used to log errors to different destinations such as files, streams, or GUI components. The
ErrorLoggerFactory
interface should be implemented to return instances of this interface appropriate to different
contexts.
Method Summary | |
---|---|
void |
logError(String msg)
log an error message |
void |
logError(String msg,
Throwable t)
log an error message along with its corresponding Throwable. |
void |
logError(Throwable t)
log a Throwable |
Method Detail |
---|
void logError(Throwable t)
t
- - Throwable to logvoid logError(String msg)
msg
- - error messagevoid logError(String msg, Throwable t)
toString()
of the
Throwable should be logged.
msg
- - error messaget
- - Throwable being logged
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |