Skip to content

Commit 7579d5e

Browse files
Repo fix
1 parent 4098c3a commit 7579d5e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • core/src/main/java/dev/vml/es/acm/core/repo

core/src/main/java/dev/vml/es/acm/core/repo/Repo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public Stream<RepoResource> queryRaw(String sql) {
181181
try {
182182
return new RepoResource(this, n.getPath());
183183
} catch (RepositoryException e) {
184-
throw new RepoException("Cannot read node path from query result!", e);
184+
throw new RepoException(String.format("Cannot read node path from query result '%s'!", sql), e);
185185
}
186186
});
187187
} catch (Exception e) {

0 commit comments

Comments
 (0)