UNPKG

713 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.TaskConfigurationError = void 0;
4const git_error_1 = require("./git-error");
5/**
6 * The `TaskConfigurationError` is thrown when a command was incorrectly
7 * configured. An error of this kind means that no attempt was made to
8 * run your command through the underlying `git` binary.
9 *
10 * Check the `.message` property for more detail on why your configuration
11 * resulted in an error.
12 */
13class TaskConfigurationError extends git_error_1.GitError {
14 constructor(message) {
15 super(undefined, message);
16 }
17}
18exports.TaskConfigurationError = TaskConfigurationError;
19//# sourceMappingURL=task-configuration-error.js.map
\No newline at end of file