@suluk/hono - v0.1.5
    Preparing search index...

    Interface SulukHttpErrorInit

    interface SulukHttpErrorInit {
        detail?: string;
        instance?: string;
        errors?: Record<string, unknown>;
        type?: string;
        retryAfterMs?: number;
        logContext?: unknown;
    }
    Index

    Properties

    detail?: string

    the human-readable explanation (RFC-9457 detail).

    instance?: string

    a URI reference identifying the specific occurrence (RFC-9457 instance).

    errors?: Record<string, unknown>

    structured validation errors (saastarter's details).

    type?: string

    override the type URI (default "about:blank").

    retryAfterMs?: number

    RateLimitedError: ms until the window resets — drives the Retry-After header (route-handler.ts:75).

    logContext?: unknown

    server-only diagnostic context (cause/service/op) — LOGGED by onError, never sent on the wire.