File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/vs/workbench/services/configuration/common Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ import { EditOperation } from 'vs/editor/common/core/editOperation';
29
29
import { Selection } from 'vs/editor/common/core/selection' ;
30
30
import { IUserDataProfileService } from 'vs/workbench/services/userDataProfile/common/userDataProfile' ;
31
31
import { IUserDataProfilesService } from 'vs/platform/userDataProfile/common/userDataProfile' ;
32
+ import { ErrorNoTelemetry } from 'vs/base/common/errors' ;
32
33
33
34
export const enum ConfigurationEditingErrorCode {
34
35
@@ -103,7 +104,7 @@ export const enum ConfigurationEditingErrorCode {
103
104
ERROR_INTERNAL
104
105
}
105
106
106
- export class ConfigurationEditingError extends Error {
107
+ export class ConfigurationEditingError extends ErrorNoTelemetry {
107
108
constructor ( message : string , public code : ConfigurationEditingErrorCode ) {
108
109
super ( message ) ;
109
110
}
You can’t perform that action at this time.
0 commit comments