github.com/jfrog/frogbot@v1.1.1-0.20231221090046-821a26f50338/action/node_modules/simple-git/dist/src/lib/errors/git-construct-error.d.ts (about) 1 import { GitError } from './git-error'; 2 import { SimpleGitOptions } from '../types'; 3 /** 4 * The `GitConstructError` is thrown when an error occurs in the constructor 5 * of the `simple-git` instance itself. Most commonly as a result of using 6 * a `baseDir` option that points to a folder that either does not exist, 7 * or cannot be read by the user the node script is running as. 8 * 9 * Check the `.message` property for more detail including the properties 10 * passed to the constructor. 11 */ 12 export declare class GitConstructError extends GitError { 13 readonly config: SimpleGitOptions; 14 constructor(config: SimpleGitOptions, message: string); 15 }