Hyperlinkv0.8.0-beta.28

Store

Store.StoreWriteErrorclasssrc/internal/store/errors.ts:57

A journal/IO write failure surfaced by the storage layer's append path — the categorized, catchable error that write methods honestly carry in their error channel. Wraps the underlying journal/IO write cause. An encode/serialization mismatch stays a defect (orDie); this is only the genuine write failure. Store.catchWriteErrors narrows it out (logs + swallows).

errorsStore.catchWriteErrors
export class StoreWriteError extends Data.TaggedError("StoreWriteError")<{
  readonly cause: unknown;
  readonly detail?: string;
}> {}