LLD - Design — Online Shopping Cart
Identify the error in this Payment Strategy Pattern implementation snippet:
class PaymentContext {
private PaymentStrategy strategy;
public void pay(double amount) {
strategy.pay(amount);
}
}