Skip to main content
Release Version

App Errors

Exception tracking captures any unhandled exceptions within the application. The exception tracking is enabled by default, and it allows the tracker to intercept critical exceptions in the app. Exceptions can crash the app so it's likely that the event will be sent after the restart of the app. Being a critical situation we can't be 100% sure that all the exception stacktraces are reliably stored for sending before the crash of the app.

App Error Columnsโ€‹

ColumnDescription
programmingLanguageThe name of the programming language used in which the app error occured.
messageThe error message that the application showed when the app error occurred.
threadNameThe name of the process that ran the thread when the app error occurred.
threadIdThe ID of the thread in which the app error occurred.
stackTraceThe full stack trace that was presented when the app error occured.
causeStackTraceThe cause of the stack trace that was presented when the app error occured.
lineNumberThe line number in the code where the app error occured.
classNameThe name of the class where the app error occurred.
exceptionNameThe name of the exception encountered in the app error.
isFatalA boolean to describe whether the app error was fatal or not.
lineColumnThe line number in the code where the app error occured.
fileNameThe name of the file where the app error occurred.
Was this page helpful?