Library API
    Preparing search index...

    Interface BoundaryContext

    interface BoundaryContext {
        catch?: boolean;
        logger?: Logger | null;
        silent?: boolean;
    }
    Index

    Properties

    catch?: boolean

    If true, errors will be caught, logged, and execution will return gracefully. If false, errors will be immediately thrown.

    logger?: Logger | null

    The namespaced logger to use for outputting the caught error.

    silent?: boolean

    If true, suppresses telemetry/logging for raise() regardless of whether the error is rethrown or swallowed.