aboutsummaryrefslogtreecommitdiff
path: root/src/errors.ts
blob: 40261640774582cb8239a6621d6e1dbb73bf5592 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
export class BranchNotFoundError extends Error {
  constructor() {
    super();
    this.message = "Branch not found";
  }
}

export class InvalidReportDocumentError extends Error {
  constructor() {
    super();
    this.message = "Invalid report document";
  }
}