improve message when no resolver found

This commit is contained in:
Martin Aeschlimann
2019-05-17 14:25:52 -07:00
committed by Alex Dima
parent d06db9bbba
commit 49de62f5c9

View File

@@ -611,7 +611,7 @@ export class ExtHostExtensionService implements ExtHostExtensionServiceShape {
const resolver = this._resolvers[authorityPrefix];
if (!resolver) {
throw new Error(`No resolver available for ${authorityPrefix}`);
throw new Error(`No remote extension installed to resolve ${authorityPrefix}.`);
}
try {