Class StackTraceItem

java.lang.Object
io.appmetrica.analytics.plugins.StackTraceItem

public class StackTraceItem extends Object
Class describing the stacktrace in a common form so that errors both from native and plugin code can be described via this object.
See Also:
  • Method Details

    • getClassName

      @Nullable public String getClassName()
      Returns:
      class name if it is defined or null otherwise
    • getFileName

      @Nullable public String getFileName()
      Returns:
      file name if it is defined or null otherwise
    • getLine

      @Nullable public Integer getLine()
      Returns:
      line if it is defined or null otherwise
    • getColumn

      @Nullable public Integer getColumn()
      Returns:
      column if it is defined or null otherwise
    • getMethodName

      @Nullable public String getMethodName()
      Returns:
      method name if it is defined or null otherwise