java.lang.Object |
↳ |
com.google.android.gms.analytics.ExceptionReporter |
Class Overview
Used to catch any uncaught exceptions and report them to Google Analytics. This class will call
dispatchLocalHits()
after calling send(Map)
.
The exact
message reported is determined by the ExceptionParser
set via the setExceptionParser(ExceptionParser)
method. See StandardExceptionParser
for an example of an
implementation of ExceptionParser
.
All exceptions reported via this class will be
reported as fatal exceptions.
Usage:
UncaughtExceptionHandler myHandler = new ExceptionReporter(
myTracker, // Currently used Tracker.
Thread.getDefaultUncaughtExceptionHandler(), // Current default uncaught exception handler.
context); // Context of the application.
// Make myHandler the new default uncaught exception handler.
Thread.setDefaultUncaughtExceptionHandler(myHandler);
Summary
Public Constructors |
|
ExceptionReporter(Tracker tracker, Thread.UncaughtExceptionHandler originalHandler, Context context)
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
java.lang.Thread.UncaughtExceptionHandler
abstract
void
|
uncaughtException(Thread arg0, Throwable arg1)
|
|
Public Constructors
public
ExceptionReporter
(Tracker tracker, Thread.UncaughtExceptionHandler originalHandler, Context context)
Parameters |
tracker |
Tracker :
an active Tracker instance. Should not be null. |
originalHandler |
Thread.UncaughtExceptionHandler :
the current DefaultUncaughtExceptionHandler . |
context |
Context :
the current app context. Should not be null.
|
Public Methods
public
void
setExceptionParser
(ExceptionParser exceptionParser)
Parameters |
exceptionParser |
ExceptionParser
|
public
void
uncaughtException
(Thread t, Throwable e)
Parameters |
t |
Thread
|
e |
Throwable
|