export class InvalidBookingNumberException extends Error { constructor(value: string) { super(`Invalid booking number format: ${value}. Expected format: WCM-YYYY-XXXXXX`); this.name = 'InvalidBookingNumberException'; } }