コード例 #1
0
ファイル: Manager.java プロジェクト: mabeltron/OpenNMS
 private Collection<Group> getBackingGroups() {
   try {
     return m_groupManager.getGroups().values();
   } catch (MarshalException e) {
     throw new WebRolesException("Error marshalling groups.xml config file", e);
   } catch (ValidationException e) {
     throw new WebRolesException("Error validating groups.xml config file", e);
   } catch (IOException e) {
     throw new WebRolesException("Error reading groups.xml config file", e);
   }
 }