9 lines
294 B
TypeScript
9 lines
294 B
TypeScript
export class InvalidBookingStatusException extends Error {
|
|
constructor(value: string) {
|
|
super(
|
|
`Invalid booking status: ${value}. Valid statuses: draft, pending_confirmation, confirmed, in_transit, delivered, cancelled`
|
|
);
|
|
this.name = 'InvalidBookingStatusException';
|
|
}
|
|
}
|