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

    Interface FrontPanelError

    Shape of the Error a FrontPanel operation rejects with on failure.

    It is a real Errormessage, stack, `${error}`, and console.log(error) all behave as usual — and additionally carries the operation's ErrorCode as the errorCode property, so you can branch on the specific failure. Use isFrontPanelError to narrow a caught value to this shape. AXITransferError extends it.

    interface FrontPanelError {
        errorCode: ErrorCode;
        message: string;
        name: string;
        stack?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    errorCode: ErrorCode

    The ErrorCode for the failed operation.

    message: string
    name: string
    stack?: string