Import com.crittercism.app
package to use this class.
CrashData provides information about crash that happens in the last session. See Detecting a Crash Occurred and CrittercismCallback for more details
CrashData (name, reason, timeOccured)
Creates a CrashData
object with specified name, reason, and time of the crash
public CrashData (String name, String reason, Date timeOccurred)
name |
A |
reason |
A |
timeOccured |
A |
getName ()
Returns a String
object that describes the name of the crash.
public String getName ()
getReason ()
Returns a String
object that describes why the crash happened.
public String getReason ()
getTimeOccurred ()
Returns a Date
object that describes when the crash occured.
public Date getTimeOccurred ()