@sovereignbase/cryptosuite
    Preparing search index...

    Interface CryptosuiteError

    Typed error used by the cryptosuite public API.

    interface CryptosuiteError {
        cause?: unknown;
        code: CryptosuiteErrorCode;
        message: string;
        name: string;
        stack?: string;
    }

    Hierarchy

    • Error
      • CryptosuiteError
    Index
    cause?: unknown

    Stable semantic code describing the failure condition.

    message: string
    name: string
    stack?: string