UNPKG

238 BPlain TextView Raw
1import { makeErrorWithCode } from '@neo-one/utils';
2
3// tslint:disable-next-line:export-name
4export const FailedToKillProcessError = makeErrorWithCode(
5 'FAILED_TO_KILL_PROCESS',
6 (pid: number) => `Failed to kill process at ${pid}`,
7);