Uses of Class
org.bookstore.customer.exception.CustomerNotFoundException
Packages that use CustomerNotFoundException
-
Uses of CustomerNotFoundException in org.bookstore.customer.service
Methods in org.bookstore.customer.service that throw CustomerNotFoundExceptionModifier and TypeMethodDescriptionCustomerService.findCustomer
(long id) Finds a customer by identifier.CustomerService.updateCustomer
(Customer customer) Updates the data of a customer. -
Uses of CustomerNotFoundException in org.bookstore.order.service
Methods in org.bookstore.order.service that throw CustomerNotFoundExceptionModifier and TypeMethodDescriptionOrderService.placeOrder
(long customerId, List<OrderItem> items) Places an order with the bookstore.OrderService.searchOrders
(long customerId, int year) Searches for orders by customer and year.