notify(new ValidationError("insufficient account balance to purchase ticket"));
return;
}
customer.deductBalance(this.ticketPrice);
apply(new LotteryTicketPurchasedEvent(aggregate.getVersionedId(), customer.getVersionedId(), generateTicketNumber()));
}