Esempio n. 1
0
 @Override
 public Tier loadTierWithProductReleaseAndMetadata(
     String tierName, String environmentName, String vdc) throws EntityNotFoundException {
   try {
     return tierDao.loadTierWithProductReleaseAndMetadata(tierName, vdc, environmentName);
   } catch (Exception e) {
     String message = "Tier " + tierName + " not found";
     throw new EntityNotFoundException(Tier.class, message, e.getMessage());
   }
 }