@Albin7326@suppo.fi to Programmer Humor@lemmy.ml • 2 years agoComment Your Code Peoplesuppo.fiimagemessage-square119fedilinkarrow-up11.4Karrow-down122
arrow-up11.38Karrow-down1imageComment Your Code Peoplesuppo.fi@Albin7326@suppo.fi to Programmer Humor@lemmy.ml • 2 years agomessage-square119fedilink
minus-squareAlien Nathan Edwardlinkfedilink16•edit-22 years ago`/* Gets CustomerEntity from customer repository by customer ID or throws a customer not found exception */ public CustomerEntity getCustomerEntityById(String customerId){ customerRepository.findById(customerId).orElseThrow(new CustomerNotFoundException()) }`
`/* Gets CustomerEntity from customer repository by customer ID or throws a customer not found exception */
public CustomerEntity getCustomerEntityById(String customerId){ customerRepository.findById(customerId).orElseThrow(new CustomerNotFoundException()) }`