in src/main/java/org/apache/sling/jcr/base/internal/mount/ProxyQuery.java [205:219]
public String getStoredQueryPath() throws ItemNotFoundException, RepositoryException {
try {
return delegate.getStoredQueryPath();
} catch (ItemNotFoundException ex) {
try {
if (delegate2 != null) {
return delegate2.getStoredQueryPath();
} else {
return "";
}
} catch (ItemNotFoundException ignore) {
throw ex;
}
}
}