Interface IJabraError

Describes an error that can be thrown while utilizing the Jabra SDK.

It has the usual properties of an Error, with some additional ones added.

interface IJabraError {
    message: string;
    name: string;
    stack?: string;
    type: ErrorType;
}

Hierarchy

  • Error
    • IJabraError

Implemented by

Properties

Properties

message: string
name: string
stack?: string
type: ErrorType

Error reason, e.g. unsupported feature.