ErrorInfo Data Type

Information about an error that occurred.

Properties
name data type description
code string Code representing the error.
message string Description of the error. This is intended to give the client developer additional information about the error that occurred. It is not suitable for displaying to the end-user.
data object Additional data associated with error.

Example

{
  "code" : "...",
  "message" : "...",
  "data" : { }
}