Albin Jose to Programmer Humor@lemmy.ml • 2 years agoComment Your Code Peoplesuppo.fiimagemessage-square121fedilinkarrow-up11.55Karrow-down126
arrow-up11.53Karrow-down1imageComment Your Code Peoplesuppo.fiAlbin Jose to Programmer Humor@lemmy.ml • 2 years agomessage-square121fedilink
minus-squareAlien Nathan Edwardcakelinkfedilink16•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()) }`