@GET
 @Path("/")
 @Produces(MediaType.APPLICATION_JSON)
 public List<CentroCusto> findAll() {
   try {
     init();
     return centroCustoService.findAll();
   } catch (Exception ex) {
     throw new WebApplicationException(getMessageError(ex.getMessage()));
   }
 }