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 9c446b4 commit e1c6b9bCopy full SHA for e1c6b9b
lib/shared/config-manager/src/index.ts
@@ -12,14 +12,6 @@ type ClearIntervalInterface = (intervalTimeout: any) => void
12
13
type SetConfigBuffer = (sdkKey: string, projectConfig: string) => void
14
15
-export class UserError extends Error {
16
- constructor(error: Error | string) {
17
- super(error instanceof Error ? error.message : error)
18
- this.name = 'UserError'
19
- this.stack = error instanceof Error ? error.stack : undefined
20
- }
21
-}
22
-
23
export class EnvironmentConfigManager {
24
private readonly logger: DVCLogger
25
private readonly sdkKey: string
0 commit comments