Interface IStacktraceAnalyzer
-
public interface IStacktraceAnalyzer
Allows implement stack trace analyzer's.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
analyze(String stacktraceText, String stacktraceTitle, String stacktraceDetail)
Analyses stacktrace text with title and detail information if present.
-
-
-
Method Detail
-
analyze
void analyze(String stacktraceText, String stacktraceTitle, String stacktraceDetail)
Analyses stacktrace text with title and detail information if present.- Parameters:
stacktraceText
- the stacktrace text, cannot benull
stacktraceTitle
- the stacktrace title, can benull
stacktraceDetail
- the stacktrace detail information, can benull
-
-