Package version:

The key vault server error model.

interface ErrorModel {
    code?: string;
    innerError?: ErrorModel;
    message?: string;
}

Properties

code?: string

The error code. NOTE: This property will not be serialized. It can only be populated by the server.

innerError?: ErrorModel

NOTE: This property will not be serialized. It can only be populated by the server.

message?: string

The error message. NOTE: This property will not be serialized. It can only be populated by the server.