427428429430431432433434435436437
throw new EJBException("customerExists: " + ex.getMessage()); } try { customerHome.findByPrimaryKey(customerId); return true; } catch (Exception ex) { return false; }
465466467468469470471472473474475