xpeditis2.0/apps/backend/src/domain/exceptions/invalid-booking-number.exception.ts
David-Henri ARNAUD 1044900e98 feature phase
2025-10-08 16:56:27 +02:00

7 lines
233 B
TypeScript

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