Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Abstract base type for representing errors that occur during data classification, label evaluation, or policy processing.
Use classificationError for specific error details.
Properties
Property | Type | Description |
---|---|---|
code | String | A service-defined error code string. |
innerError | classificationInnerError | Contains more specific, potentially internal error details. |
message | String | A human-readable representation of the error. |
target | String | The target of the error (for example, the specific property or item causing the issue). |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
Note: This is an abstract type and won't be instantiated directly.
{
"@odata.type": "#microsoft.graph.classifcationErrorBase",
"code": "String",
"message": "String",
"target": "String",
"innerError": {
"@odata.type": "microsoft.graph.classificationInnerError"
}
}