You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
397 B
JavaScript
12 lines
397 B
JavaScript
4 years ago
|
"use strict";
|
||
|
|
||
|
const errorChain = require("error-chain");
|
||
|
|
||
|
module.exports = {
|
||
|
UnexpectedOutput: errorChain.create("UnexpectedOutput"),
|
||
|
ExpectedOutputMissing: errorChain.create("ExpectedOutputMissing"),
|
||
|
OutputParsingFailed: errorChain.create("OutputParsingFailed"),
|
||
|
NonZeroExitCode: errorChain.create("NonZeroExitCode"),
|
||
|
CommandExecutionFailed: errorChain.create("CommandExecutionFailed"),
|
||
|
};
|