interface IAPIServerException {
    errorClass?: string;
    errorCode?: number;
    errorSource?: string;
    message?: string;
    operationId?: string;
    statusCode?: number;
    [key: string]: any;
}

Implemented by

Indexable

  • [key: string]: any

Properties

errorClass?: string

The class of exceptions this belongs to.

errorCode?: number

The code associated with the exception.

errorSource?: string

The source of where the exception occurred.

message?: string

The explaination of the exception that occurred.

operationId?: string

The id of the operation that threw the exception.

statusCode?: number

The HTTP status code returned.