Class Exception
- java.lang.Object
-
- com.microsoft.appcenter.crashes.ingestion.models.Exception
-
- All Implemented Interfaces:
com.microsoft.appcenter.ingestion.models.Model
public class Exception extends java.lang.Object implements com.microsoft.appcenter.ingestion.models.ModelThe Exception model.
-
-
Constructor Summary
Constructors Constructor Description Exception()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.util.List<StackFrame>getFrames()Get the frames value.java.util.List<Exception>getInnerExceptions()Get the innerExceptions value.java.lang.StringgetMessage()Get the message value.java.lang.StringgetMinidumpFilePath()Get the minidump file path.java.lang.StringgetStackTrace()Get the stack trace value.java.lang.StringgetType()Get the type value.java.lang.StringgetWrapperSdkName()Get the wrapperSdkName value.inthashCode()voidread(org.json.JSONObject object)voidsetFrames(java.util.List<StackFrame> frames)Set the frames value.voidsetInnerExceptions(java.util.List<Exception> innerExceptions)Set the innerExceptions value.voidsetMessage(java.lang.String message)Set the message value.voidsetMinidumpFilePath(java.lang.String minidumpFilePath)Set minidump file path.voidsetStackTrace(java.lang.String stackTrace)Set stack trace value.voidsetType(java.lang.String type)Set the type value.voidsetWrapperSdkName(java.lang.String wrapperSdkName)Set the wrapperSdkName value.voidwrite(org.json.JSONStringer writer)
-
-
-
Method Detail
-
getType
public java.lang.String getType()
Get the type value.- Returns:
- the type value
-
setType
public void setType(java.lang.String type)
Set the type value.- Parameters:
type- the type value to set
-
getMessage
public java.lang.String getMessage()
Get the message value.- Returns:
- the message value
-
setMessage
public void setMessage(java.lang.String message)
Set the message value.- Parameters:
message- the message value to set
-
getStackTrace
public java.lang.String getStackTrace()
Get the stack trace value.- Returns:
- the stack trace value
-
setStackTrace
public void setStackTrace(java.lang.String stackTrace)
Set stack trace value.- Parameters:
stackTrace- the stack trace value to set.
-
getFrames
public java.util.List<StackFrame> getFrames()
Get the frames value.- Returns:
- the frames value
-
setFrames
public void setFrames(java.util.List<StackFrame> frames)
Set the frames value.- Parameters:
frames- the frames value to set
-
getInnerExceptions
public java.util.List<Exception> getInnerExceptions()
Get the innerExceptions value.- Returns:
- the innerExceptions value
-
setInnerExceptions
public void setInnerExceptions(java.util.List<Exception> innerExceptions)
Set the innerExceptions value.- Parameters:
innerExceptions- the innerExceptions value to set
-
getWrapperSdkName
public java.lang.String getWrapperSdkName()
Get the wrapperSdkName value.- Returns:
- the wrapperSdkName value
-
setWrapperSdkName
public void setWrapperSdkName(java.lang.String wrapperSdkName)
Set the wrapperSdkName value.- Parameters:
wrapperSdkName- the wrapperSdkName value to set
-
getMinidumpFilePath
public java.lang.String getMinidumpFilePath()
Get the minidump file path.- Returns:
- the minidump file path.
-
setMinidumpFilePath
public void setMinidumpFilePath(java.lang.String minidumpFilePath)
Set minidump file path.- Parameters:
minidumpFilePath- the minidump file path to set.
-
read
public void read(org.json.JSONObject object) throws org.json.JSONException- Specified by:
readin interfacecom.microsoft.appcenter.ingestion.models.Model- Throws:
org.json.JSONException
-
write
public void write(org.json.JSONStringer writer) throws org.json.JSONException- Specified by:
writein interfacecom.microsoft.appcenter.ingestion.models.Model- Throws:
org.json.JSONException
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-