Agents in Action
Last updated
Was this helpful?
Was this helpful?
public class App {
public static void main(String[] args) {
CustomerService customerService = new CustomerService();
NotificationService notificationService = new NotificationService();
Customer customer = customerService.getCustomerById("999"); // This is null
String email = customer.getEmail(); // NPE here!
notificationService.sendEmail(email, "Welcome!");
}
}