ChemPal Documentation - v1.7.0
    Preparing search index...

    Interface CapturedError

    A single captured exception, trimmed to what a bug report needs.

    interface CapturedError {
        ts: number;
        source: ErrorSource;
        message: string;
        stack?: string;
    }
    Index

    Properties

    Properties

    ts: number

    Capture time, epoch milliseconds.

    source: ErrorSource

    Which global hook (or React) surfaced the error.

    message: string

    The error message.

    stack?: string

    The stack trace, already truncated.