ErrorModel interface
The error model.
Properties
| code | A unique error code that identifies the specific error. |
| details | An array of nested ErrorModel objects that provides additional error details. |
| message | A human-readable error message that provides more details about the error. |
| target | The specific component that the error is associated with. |
Property Details
code
A unique error code that identifies the specific error.
code: string
Property Value
string
details
An array of nested ErrorModel objects that provides additional error details.
details?: ErrorModel[]
Property Value
message
A human-readable error message that provides more details about the error.
message: string
Property Value
string
target
The specific component that the error is associated with.
target?: string
Property Value
string