FrontPanel Platform API - v6.1.0
    Preparing search index...

    Interface AXIOperationError

    Shape of the Error an AXI bulk-write (operation) rejects with on failure. Adds the transaction count to AXITransferError (together they are the same statistics a successful write returns). Narrow with isAXIOperationError. Mirrors the C# AXIOperationException.

    interface AXIOperationError {
        errorCode: ErrorCode;
        message: string;
        name: string;
        stack?: string;
        transactionCount: number;
        transferByteCount: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    errorCode: ErrorCode

    The ErrorCode for the failed operation.

    message: string
    name: string
    stack?: string
    transactionCount: number

    Transactions completed before the operation failed.

    transferByteCount: number

    Bytes transferred before the operation failed.