Skip to main content
Module

x/proc/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.20.31/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.