public interface IErrorLogger
| Modifier and Type | Method and Description |
|---|---|
void |
logError(String message)
Log an error that occurs while performing analysis.
|
void |
logError(String message,
Throwable e)
Log an error that occurs while performing analysis.
|
void |
reportMissingClass(ClassDescriptor classDescriptor)
Called to report a class lookup failure.
|
void |
reportMissingClass(ClassNotFoundException ex)
Called to report a class lookup failure.
|
void |
reportSkippedAnalysis(MethodDescriptor method)
Report that we skipped some analysis of a method
|
void reportMissingClass(ClassNotFoundException ex)
ex - a ClassNotFoundException resulting from the class lookup
failurevoid reportMissingClass(ClassDescriptor classDescriptor)
classDescriptor - ClassDescriptor of a missing classvoid logError(String message)
message - the error messagevoid logError(String message, Throwable e)
message - the error messagee - the exception which is the underlying cause of the errorvoid reportSkippedAnalysis(MethodDescriptor method)
method - the method we skippedCopyright © 2003–2015. All rights reserved.