@ovotech/genesys-web-messaging-tester-cli
Version:
15 lines (14 loc) • 515 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.CommandExpectedlyFailedError = void 0;
/**
* This error is thrown when you want to fail a command, but not have an error
* message or stack trace printed out by the entrypoint code.
*/
class CommandExpectedlyFailedError extends Error {
constructor() {
super();
Object.setPrototypeOf(this, CommandExpectedlyFailedError.prototype);
}
}
exports.CommandExpectedlyFailedError = CommandExpectedlyFailedError;
;