We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6aa41d commit 99d794cCopy full SHA for 99d794c
extensions/ql-vscode/src/databases-ui.ts
@@ -384,7 +384,11 @@ export class DatabaseUI extends DisposableObject {
384
}
385
} catch (e) {
386
// rethrow and let this be handled by default error handling.
387
- throw new Error(`Could not set database: ${getErrorMessage(e)}`);
+ throw new Error(
388
+ `Could not set the database for the Code Tour. Please make sure you are using the default workspace in your codespace: ${getErrorMessage(
389
+ e,
390
+ )}`,
391
+ );
392
393
};
394
0 commit comments