LVE SDK
    Preparing search index...

    Class LveError

    Base class for all LVE errors. Catch this to handle any error from the SDK.

    try {
    await openLveFile(bytes, { credentials });
    } catch (err) {
    if (err instanceof LveError) console.error("LVE:", err.message);
    else throw err;
    }

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Properties

    Constructors

    • Parameters

      • message: string

      Returns LveError

    Methods

    • Indicates whether the argument provided is a built-in Error instance or not.

      Parameters

      • error: unknown

      Returns error is Error

    Properties

    cause?: unknown
    message: string
    name: string
    stack?: string