We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cb3073 commit ed9537bCopy full SHA for ed9537b
src/platform/errors/types.ts
@@ -105,7 +105,8 @@ export type ErrorCategory =
105
| 'unknownProduct'
106
| 'invalidInterpreter'
107
| 'pythonAPINotInitialized'
108
- | 'deepnoteserver';
+ | 'deepnoteserver'
109
+ | 'unsupported_integration';
110
111
// If there are errors, then the are added to the telementry properties.
112
export type TelemetryErrorProperties = {
src/platform/errors/unsupportedIntegrationError.ts
@@ -13,6 +13,6 @@ import { BaseError } from './types';
13
*/
14
export class UnsupportedIntegrationError extends BaseError {
15
constructor(message: string) {
16
- super('unknown', message);
+ super('unsupported_integration', message);
17
}
18
0 commit comments