public class ErrorReport
extends java.lang.Object
| Constructor and Description |
|---|
ErrorReport() |
| Modifier and Type | Method and Description |
|---|---|
java.util.Date |
getAppErrorTime()
Gets the application error datetime.
|
java.util.Date |
getAppStartTime()
Gets the application start datetime.
|
com.microsoft.appcenter.ingestion.models.Device |
getDevice()
Gets the device information.
|
java.lang.String |
getId()
Gets the UUID for crash report.
|
java.lang.String |
getThreadName()
Gets the thread name.
|
java.lang.Throwable |
getThrowable()
Gets the throwable.
|
void |
setAppErrorTime(java.util.Date appErrorTime)
Sets the application error datetime.
|
void |
setAppStartTime(java.util.Date appStartTime)
Sets the application start datetime.
|
void |
setDevice(com.microsoft.appcenter.ingestion.models.Device device)
Sets the device information.
|
void |
setId(java.lang.String id)
Sets the UUID for crash report.
|
void |
setThreadName(java.lang.String threadName)
Sets the thread name.
|
void |
setThrowable(java.lang.Throwable throwable)
Sets the throwable.
|
public java.lang.String getId()
public void setId(java.lang.String id)
id - A UUID for crash report to set.public java.lang.String getThreadName()
public void setThreadName(java.lang.String threadName)
threadName - A thread name to set.public java.lang.Throwable getThrowable()
public void setThrowable(java.lang.Throwable throwable)
throwable - A throwable to set.public java.util.Date getAppStartTime()
public void setAppStartTime(java.util.Date appStartTime)
appStartTime - An application start datetime to set.public java.util.Date getAppErrorTime()
public void setAppErrorTime(java.util.Date appErrorTime)
appErrorTime - An application error datetime to set.public com.microsoft.appcenter.ingestion.models.Device getDevice()
public void setDevice(com.microsoft.appcenter.ingestion.models.Device device)
device - A device information to set.