Packages > @fluidframework/driver-definitions

@fluidframework/driver-definitions Package

Interfaces

Interface Description
IAnyDriverError Interface describing errors and warnings raised by any driver code.
IDriverErrorBase Base interface for all errors and warnings

Types

TypeAlias Description
DriverErrorTypes Different error types the Driver may report out to the Host.

Variables

Variable Modifiers Description
DriverErrorTypes readonly Different error types the Driver may report out to the Host.

Variable Details

DriverErrorTypes

Different error types the Driver may report out to the Host.

Signature

DriverErrorTypes: {
    readonly genericNetworkError: "genericNetworkError";
    readonly authorizationError: "authorizationError";
    readonly fileNotFoundOrAccessDeniedError: "fileNotFoundOrAccessDeniedError";
    readonly offlineError: "offlineError";
    readonly unsupportedClientProtocolVersion: "unsupportedClientProtocolVersion";
    readonly writeError: "writeError";
    readonly fetchFailure: "fetchFailure";
    readonly fetchTokenError: "fetchTokenError";
    readonly incorrectServerResponse: "incorrectServerResponse";
    readonly fileOverwrittenInStorage: "fileOverwrittenInStorage";
    readonly deltaStreamConnectionForbidden: "deltaStreamConnectionForbidden";
    readonly locationRedirection: "locationRedirection";
    readonly fluidInvalidSchema: "fluidInvalidSchema";
    readonly fileIsLocked: "fileIsLocked";
    readonly outOfStorageError: "outOfStorageError";
    readonly genericError: "genericError";
    readonly throttlingError: "throttlingError";
    readonly usageError: "usageError";
}