interface ExtensionError {
    code: string;
    extensionId: string;
    extensionKey?: string;
    message: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

code: string

Error code caused by the Extension. For example, InvalidField.

extensionId: string

Unique identifier of the Extension.

extensionKey?: string

User-defined unique identifier of the Extension.

message: string

Plain text description of the error.

Generated using TypeDoc