ErrorInfo interface
错误的代码和消息。
属性
| additional |
可以在错误信息对象上提供的其他属性 |
| code | 计算机可读错误代码。 |
| details | 错误详细信息。 |
| innererror | 内部错误详细信息(如果存在)。 |
| message | 人工可读错误消息。 |
属性详细信息
additionalProperties
可以在错误信息对象上提供的其他属性
additionalProperties?: Record<string, any>
属性值
Record<string, any>
code
计算机可读错误代码。
code: string
属性值
string
details
innererror
message
人工可读错误消息。
message: string
属性值
string