We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b6685e commit 0133cd7Copy full SHA for 0133cd7
1 file changed
extensions/ql-vscode/src/remote-queries/export-results.ts
@@ -31,7 +31,8 @@ export async function exportRemoteQueryResults(
31
if (queryId) {
32
const query = queryHistoryManager.getQueryById(queryId);
33
if (!query) {
34
- throw new Error(`Could not find query with id ${queryId}`);
+ void logger.log(`Could not find query with id ${queryId}`);
35
+ throw new Error('There was an error when trying to retrieve variant analysis information');
36
}
37
queryHistoryItem = query;
38
} else {
0 commit comments