export class BranchNotCheckedOutError extends Error { constructor(message: string) { super(message); this.name = "BranchNotCheckedOutError"; } } export class CommitAlreadyExistsError extends Error { constructor(message: string) { super(message); this.name = "CommitAlreadyExistsError"; } } export class ValidateGitSetupError extends Error { constructor(message: string) { super(message); this.name = "ValidateGitSetupError"; } }