@ExceptionHandler
 @GET
 @Path("/findAllSuppliers")
 @Produces("application/json")
 public List<Supplier> findAllSuppliers() {
   logger.info("inside @class SuppliersRestImpl @method SupplierRestImpl entry.");
   return supplierService.findAllSuppliers();
 }