Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/proc/legacy/mod.ts>ProcessExitError

A better way to work with processes in Deno.
Go to Latest
class ProcessExitError
extends Error
import { ProcessExitError } from "https://deno.land/x/proc@0.21.5/legacy/mod.ts";

The standard error that is thrown when a process exits with a non-0 exit code.

Constructors

new
ProcessExitError(
message: string,
code: number,
options: RunOptions,
signal?: number,
details?: unknown,
)

Constructor.