Skip to main content
Module

x/proc/mod3.ts>SignalError

A high-level way to run child processes that is easy, flexible, powerful, and prevents resource leaks.
Go to Latest
class SignalError
extends ProcessError
import { SignalError } from "https://deno.land/x/proc@0.20.25/mod3.ts";

Thrown because the process exited due to a signal. By default, this is thrown for any signal but may be overridden.

Constructors

new
SignalError(
message: string,
command: string[],
signal: Deno.Signal,
options?: { cause?: Error; },
)