Interface IStacktraceParser
-
public interface IStacktraceParser
Parses stacktrace from stack trace or thread dump text.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IStacktrace
parse(String text, String title, String detail)
Parses stacktrace from stack trace or thread dump text.
-
-
-
Method Detail
-
parse
IStacktrace parse(String text, String title, String detail)
Parses stacktrace from stack trace or thread dump text. Sets title and (or) stacktrace detail information if present.- Parameters:
text
- the stacktrace text, cannot benull
title
- the stacktrace title, can benull
detail
- the detail information, can benull
- Returns:
- stacktrace or
null
-
-