com.google.android.gms.analytics.ExceptionParser |
![]()
|
This interface is responsible for parsing a Throwable
and providing
a short, meaningful description to report to Google Analytics.
This class can be used in conjugation with the ExceptionReporter.
UncaughtExceptionHandler myHandler = new ExceptionReporter( myTracker, // Currently used Tracker. GAServiceManager.getInstance(), // GAServiceManager singleton. Thread.getDefaultUncaughtExceptionHandler(), // Current default uncaught exception handler. context); // Context of the application. myHandler.setExceptionParser(new MyExceptionParser()); // Where MyExceptionParser provides a custom description for various exceptions.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Return a short description of a
Throwable suitable for
reporting to Google Analytics.
|