import { TakeInternal } from "@effect/core/stream/Take/operations/_internal/TakeInternal" /** * Creates a failing `Take` with the specified error message. * * @tsplus static effect/core/stream/Take.Ops dieMessage */ export function dieMessage(message: string): Take { return new TakeInternal(Exit.die(new RuntimeError(message))) }