238239240241242243244245246247248
throws NoSuchPrivilegeException { boolean found = getConfiguration().removePrivilegeById(id); if (!found) { throw new NoSuchPrivilegeException(id); } if (clean) { cleanRemovedPrivilege(id); }
294295296297298299300301
if (privilege != null) { return privilege; } else { throw new NoSuchPrivilegeException(id); } }
63646566676869
} public Privilege getPrivilege(String privilegeId) throws NoSuchPrivilegeException { throw new NoSuchPrivilegeException("Privilege: " + privilegeId + " could not be found."); }