File size: 188 Bytes
e249c6d
 
 
 
 
 
1
2
3
4
5
6
7
export class WorktreeRepositoryError extends Error {
  constructor(message: string, options?: ErrorOptions) {
    super(message, options);
    this.name = "WorktreeRepositoryError";
  }
}