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"; } }