// we also put a member repo "inhouse-snapshot" out of service.
// now we ask for something that IS KNOWN TO NOT EXISTS, hence, request will arrive to all members
// and members of members (recursively), and the response will form a nice tree
final GroupRepository group =
getRepositoryRegistry().getRepositoryWithFacet("another-test", GroupRepository.class);
try {
group.retrieveItem(new ResourceStoreRequest("/some/path/that/we/know/is/not/existing/123456/12.foo"));
// anything else should fail
fail("We expected an exception here!");
}
catch (GroupItemNotFoundException e) {
final String dumpStr = dumpNotFoundReasoning(e, 0);