@snyk/error-catalog-nodejs-public 5.33.0 → 5.34.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/catalogs/CLI-error-catalog.d.ts +3 -0
- package/src/catalogs/CLI-error-catalog.js +8 -0
- package/src/catalogs/CLI-error-catalog.js.map +1 -1
- package/src/catalogs/Code-error-catalog.d.ts +29 -0
- package/src/catalogs/Code-error-catalog.js +76 -1
- package/src/catalogs/Code-error-catalog.js.map +1 -1
- package/src/catalogs/CustomBaseImages-error-catalog.d.ts +19 -0
- package/src/catalogs/CustomBaseImages-error-catalog.js +43 -0
- package/src/catalogs/CustomBaseImages-error-catalog.js.map +1 -1
- package/src/catalogs/Fix-error-catalog.d.ts +22 -0
- package/src/catalogs/Fix-error-catalog.js +44 -0
- package/src/catalogs/Fix-error-catalog.js.map +1 -1
- package/src/catalogs/Integration-error-catalog.d.ts +1 -0
- package/src/catalogs/Integration-error-catalog.js +2 -0
- package/src/catalogs/Integration-error-catalog.js.map +1 -1
- package/src/catalogs/IsolatedBuilds-error-catalog.d.ts +4 -0
- package/src/catalogs/IsolatedBuilds-error-catalog.js +13 -0
- package/src/catalogs/IsolatedBuilds-error-catalog.js.map +1 -1
- package/src/catalogs/OpenAPI-error-catalog.d.ts +8 -0
- package/src/catalogs/OpenAPI-error-catalog.js +16 -0
- package/src/catalogs/OpenAPI-error-catalog.js.map +1 -1
- package/src/catalogs/OpenSourceEcosystems-error-catalog.d.ts +77 -0
- package/src/catalogs/OpenSourceEcosystems-error-catalog.js +352 -0
- package/src/catalogs/OpenSourceEcosystems-error-catalog.js.map +1 -1
- package/src/catalogs/OpenSourceProjectIssues-error-catalog.d.ts +5 -0
- package/src/catalogs/OpenSourceProjectIssues-error-catalog.js +10 -0
- package/src/catalogs/OpenSourceProjectIssues-error-catalog.js.map +1 -1
- package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.d.ts +5 -0
- package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js +10 -0
- package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js.map +1 -1
- package/src/catalogs/OpenSourceUnmanaged-error-catalog.d.ts +2 -0
- package/src/catalogs/OpenSourceUnmanaged-error-catalog.js +4 -0
- package/src/catalogs/OpenSourceUnmanaged-error-catalog.js.map +1 -1
- package/src/catalogs/PRChecks-error-catalog.d.ts +11 -0
- package/src/catalogs/PRChecks-error-catalog.js +61 -0
- package/src/catalogs/PRChecks-error-catalog.js.map +1 -1
- package/src/catalogs/Policies-error-catalog.d.ts +1 -0
- package/src/catalogs/Policies-error-catalog.js +3 -0
- package/src/catalogs/Policies-error-catalog.js.map +1 -1
- package/src/catalogs/PurlVulnerabilityFetching-error-catalog.d.ts +20 -0
- package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js +40 -0
- package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js.map +1 -1
- package/src/catalogs/SCM-error-catalog.d.ts +6 -0
- package/src/catalogs/SCM-error-catalog.js +16 -0
- package/src/catalogs/SCM-error-catalog.js.map +1 -1
- package/src/catalogs/SbomExport-error-catalog.d.ts +9 -0
- package/src/catalogs/SbomExport-error-catalog.js +18 -0
- package/src/catalogs/SbomExport-error-catalog.js.map +1 -1
- package/src/catalogs/SbomTest-error-catalog.d.ts +10 -0
- package/src/catalogs/SbomTest-error-catalog.js +29 -0
- package/src/catalogs/SbomTest-error-catalog.js.map +1 -1
- package/src/catalogs/Snyk-error-catalog.d.ts +8 -0
- package/src/catalogs/Snyk-error-catalog.js +22 -0
- package/src/catalogs/Snyk-error-catalog.js.map +1 -1
- package/src/catalogs/Target-error-catalog.d.ts +2 -0
- package/src/catalogs/Target-error-catalog.js +4 -0
- package/src/catalogs/Target-error-catalog.js.map +1 -1
- package/src/catalogs/error-codes.d.ts +1 -0
- package/src/catalogs/error-codes.js +1 -0
- package/src/catalogs/error-codes.js.map +1 -1
- package/src/problem-error.js +1 -1
- package/src/problem-error.js.map +1 -1
- package/src/types.d.ts +2 -1
- package/src/types.js.map +1 -1
|
@@ -21,6 +21,7 @@ import { ProblemError } from '../problem-error';
|
|
|
21
21
|
* @summary Unable to parse manifest file
|
|
22
22
|
* @category OpenSourceEcosystems
|
|
23
23
|
* @param {string} details the specific details that causes this error
|
|
24
|
+
* @param {string} description the general description for this error
|
|
24
25
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
25
26
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
26
27
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -36,6 +37,7 @@ export declare class UnparseableManifestError extends ProblemError {
|
|
|
36
37
|
* @summary Unable to parse lock file
|
|
37
38
|
* @category OpenSourceEcosystems
|
|
38
39
|
* @param {string} details the specific details that causes this error
|
|
40
|
+
* @param {string} description the general description for this error
|
|
39
41
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
40
42
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
41
43
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -54,6 +56,7 @@ export declare class UnparseableLockFileError extends ProblemError {
|
|
|
54
56
|
* @summary Unknown dependency version
|
|
55
57
|
* @category OpenSourceEcosystems
|
|
56
58
|
* @param {string} details the specific details that causes this error
|
|
59
|
+
* @param {string} description the general description for this error
|
|
57
60
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
58
61
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
59
62
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -69,6 +72,7 @@ export declare class UnknownDependencyVersionError extends ProblemError {
|
|
|
69
72
|
* @summary Missing required request header
|
|
70
73
|
* @category OpenSourceEcosystems
|
|
71
74
|
* @param {string} details the specific details that causes this error
|
|
75
|
+
* @param {string} description the general description for this error
|
|
72
76
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
73
77
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
74
78
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -84,6 +88,7 @@ export declare class MissingHeaderError extends ProblemError {
|
|
|
84
88
|
* @summary Payload missing required elements
|
|
85
89
|
* @category OpenSourceEcosystems
|
|
86
90
|
* @param {string} details the specific details that causes this error
|
|
91
|
+
* @param {string} description the general description for this error
|
|
87
92
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
88
93
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
89
94
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -99,6 +104,7 @@ export declare class MissingPayloadError extends ProblemError {
|
|
|
99
104
|
* @summary Files cannot be processed
|
|
100
105
|
* @category OpenSourceEcosystems
|
|
101
106
|
* @param {string} details the specific details that causes this error
|
|
107
|
+
* @param {string} description the general description for this error
|
|
102
108
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
103
109
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
104
110
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -114,6 +120,7 @@ export declare class UnprocessableFileError extends ProblemError {
|
|
|
114
120
|
* @summary Cannot get file from source
|
|
115
121
|
* @category OpenSourceEcosystems
|
|
116
122
|
* @param {string} details the specific details that causes this error
|
|
123
|
+
* @param {string} description the general description for this error
|
|
117
124
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
118
125
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
119
126
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -129,6 +136,7 @@ export declare class CannotGetFileFromSourceError extends ProblemError {
|
|
|
129
136
|
* @summary Missing environment variable
|
|
130
137
|
* @category OpenSourceEcosystems
|
|
131
138
|
* @param {string} details the specific details that causes this error
|
|
139
|
+
* @param {string} description the general description for this error
|
|
132
140
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
133
141
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
134
142
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -144,6 +152,7 @@ export declare class MissingEnvironmentVariableError extends ProblemError {
|
|
|
144
152
|
* @summary Brokered connections not currently supported
|
|
145
153
|
* @category OpenSourceEcosystems
|
|
146
154
|
* @param {string} details the specific details that causes this error
|
|
155
|
+
* @param {string} description the general description for this error
|
|
147
156
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
148
157
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
149
158
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -165,6 +174,7 @@ export declare class BrokeredConnectionNotSupportedError extends ProblemError {
|
|
|
165
174
|
* @summary Snyk failed to clone your repository
|
|
166
175
|
* @category OpenSourceEcosystems
|
|
167
176
|
* @param {string} details the specific details that causes this error
|
|
177
|
+
* @param {string} description the general description for this error
|
|
168
178
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
169
179
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
170
180
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -183,6 +193,7 @@ export declare class GitCloneFailedError extends ProblemError {
|
|
|
183
193
|
* @summary Unsupported manifest file type for remediation
|
|
184
194
|
* @category OpenSourceEcosystems
|
|
185
195
|
* @param {string} details the specific details that causes this error
|
|
196
|
+
* @param {string} description the general description for this error
|
|
186
197
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
187
198
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
188
199
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -198,6 +209,7 @@ export declare class UnsupportedManifestFileError extends ProblemError {
|
|
|
198
209
|
* @summary Target framework not supported
|
|
199
210
|
* @category OpenSourceEcosystems
|
|
200
211
|
* @param {string} details the specific details that causes this error
|
|
212
|
+
* @param {string} description the general description for this error
|
|
201
213
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
202
214
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
203
215
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -231,6 +243,7 @@ export declare class UnsupportedTargetFrameworkError extends ProblemError {
|
|
|
231
243
|
* @summary Your C# code is missing a static Main function
|
|
232
244
|
* @category OpenSourceEcosystems
|
|
233
245
|
* @param {string} details the specific details that causes this error
|
|
246
|
+
* @param {string} description the general description for this error
|
|
234
247
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
235
248
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
236
249
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -259,6 +272,7 @@ export declare class MissingStaticMainFunctionError extends ProblemError {
|
|
|
259
272
|
* @summary The dotnet CLI is unable to generate a self-contained binary
|
|
260
273
|
* @category OpenSourceEcosystems
|
|
261
274
|
* @param {string} details the specific details that causes this error
|
|
275
|
+
* @param {string} description the general description for this error
|
|
262
276
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
263
277
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
264
278
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -294,6 +308,7 @@ export declare class PublishFailedError extends ProblemError {
|
|
|
294
308
|
* @summary The dotnet CLI was unable to restore from private package sources
|
|
295
309
|
* @category OpenSourceEcosystems
|
|
296
310
|
* @param {string} details the specific details that causes this error
|
|
311
|
+
* @param {string} description the general description for this error
|
|
297
312
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
298
313
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
299
314
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -349,6 +364,7 @@ export declare class FailedToAccessPrivatePackageSourceError extends ProblemErro
|
|
|
349
364
|
* @summary Missing MSBuild Condition Construct in project file
|
|
350
365
|
* @category OpenSourceEcosystems
|
|
351
366
|
* @param {string} details the specific details that causes this error
|
|
367
|
+
* @param {string} description the general description for this error
|
|
352
368
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
353
369
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
354
370
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -369,6 +385,7 @@ export declare class MissingMSBuildConditionError extends ProblemError {
|
|
|
369
385
|
* @summary No target frameworks found in manifest files
|
|
370
386
|
* @category OpenSourceEcosystems
|
|
371
387
|
* @param {string} details the specific details that causes this error
|
|
388
|
+
* @param {string} description the general description for this error
|
|
372
389
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
373
390
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
374
391
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -446,6 +463,7 @@ export declare class NoTargetFrameworksFoundError extends ProblemError {
|
|
|
446
463
|
* @summary Your global.json is targeting an outdated SDK version
|
|
447
464
|
* @category OpenSourceEcosystems
|
|
448
465
|
* @param {string} details the specific details that causes this error
|
|
466
|
+
* @param {string} description the general description for this error
|
|
449
467
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
450
468
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
451
469
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -468,6 +486,7 @@ export declare class OutdatedSDKVersionRequestedError extends ProblemError {
|
|
|
468
486
|
* @summary Project failed to build due to missing type or namespace references
|
|
469
487
|
* @category OpenSourceEcosystems
|
|
470
488
|
* @param {string} details the specific details that causes this error
|
|
489
|
+
* @param {string} description the general description for this error
|
|
471
490
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
472
491
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
473
492
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -486,6 +505,7 @@ export declare class ProjectSkippedAndNotFoundError extends ProblemError {
|
|
|
486
505
|
* @summary Failed to access private module
|
|
487
506
|
* @category OpenSourceEcosystems
|
|
488
507
|
* @param {string} details the specific details that causes this error
|
|
508
|
+
* @param {string} description the general description for this error
|
|
489
509
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
490
510
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
491
511
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -504,6 +524,7 @@ export declare class PrivateModuleError extends ProblemError {
|
|
|
504
524
|
* @summary Go mod file not found
|
|
505
525
|
* @category OpenSourceEcosystems
|
|
506
526
|
* @param {string} details the specific details that causes this error
|
|
527
|
+
* @param {string} description the general description for this error
|
|
507
528
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
508
529
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
509
530
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -527,6 +548,7 @@ export declare class GoModFileMissingError extends ProblemError {
|
|
|
527
548
|
* @summary OAuth re-authorization required
|
|
528
549
|
* @category OpenSourceEcosystems
|
|
529
550
|
* @param {string} details the specific details that causes this error
|
|
551
|
+
* @param {string} description the general description for this error
|
|
530
552
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
531
553
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
532
554
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -554,6 +576,7 @@ export declare class SsoReAuthRequiredError extends ProblemError {
|
|
|
554
576
|
* @summary Your project repository is missing required files
|
|
555
577
|
* @category OpenSourceEcosystems
|
|
556
578
|
* @param {string} details the specific details that causes this error
|
|
579
|
+
* @param {string} description the general description for this error
|
|
557
580
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
558
581
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
559
582
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -582,6 +605,7 @@ export declare class IncompleteProjectError extends ProblemError {
|
|
|
582
605
|
* @summary Your project repository has inconsistent vendoring information
|
|
583
606
|
* @category OpenSourceEcosystems
|
|
584
607
|
* @param {string} details the specific details that causes this error
|
|
608
|
+
* @param {string} description the general description for this error
|
|
585
609
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
586
610
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
587
611
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -599,6 +623,7 @@ export declare class InconsistentVendoringError extends ProblemError {
|
|
|
599
623
|
* @summary Unsupported external file generation
|
|
600
624
|
* @category OpenSourceEcosystems
|
|
601
625
|
* @param {string} details the specific details that causes this error
|
|
626
|
+
* @param {string} description the general description for this error
|
|
602
627
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
603
628
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
604
629
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -622,6 +647,7 @@ export declare class UnsupportedExternalFileGenerationSCMError extends ProblemEr
|
|
|
622
647
|
* @summary Unable to access private dependencies
|
|
623
648
|
* @category OpenSourceEcosystems
|
|
624
649
|
* @param {string} details the specific details that causes this error
|
|
650
|
+
* @param {string} description the general description for this error
|
|
625
651
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
626
652
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
627
653
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -641,6 +667,7 @@ export declare class UnableToAccessPrivateDepsError extends ProblemError {
|
|
|
641
667
|
* @summary Unable to fetch private dependencies
|
|
642
668
|
* @category OpenSourceEcosystems
|
|
643
669
|
* @param {string} details the specific details that causes this error
|
|
670
|
+
* @param {string} description the general description for this error
|
|
644
671
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
645
672
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
646
673
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -656,6 +683,7 @@ export declare class UnableToUseCredentialsError extends ProblemError {
|
|
|
656
683
|
* @summary Toolchain not available
|
|
657
684
|
* @category OpenSourceEcosystems
|
|
658
685
|
* @param {string} details the specific details that causes this error
|
|
686
|
+
* @param {string} description the general description for this error
|
|
659
687
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
660
688
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
661
689
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -671,6 +699,7 @@ export declare class ToolchainNotAvailableError extends ProblemError {
|
|
|
671
699
|
* @summary Missing property
|
|
672
700
|
* @category OpenSourceEcosystems
|
|
673
701
|
* @param {string} details the specific details that causes this error
|
|
702
|
+
* @param {string} description the general description for this error
|
|
674
703
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
675
704
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
676
705
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -686,6 +715,7 @@ export declare class MissingRequirementFromPomError extends ProblemError {
|
|
|
686
715
|
* @summary Unable to resolve value for property
|
|
687
716
|
* @category OpenSourceEcosystems
|
|
688
717
|
* @param {string} details the specific details that causes this error
|
|
718
|
+
* @param {string} description the general description for this error
|
|
689
719
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
690
720
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
691
721
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -701,6 +731,7 @@ export declare class UnableToResolveValueForPropertyError extends ProblemError {
|
|
|
701
731
|
* @summary Unable to resolve version for property
|
|
702
732
|
* @category OpenSourceEcosystems
|
|
703
733
|
* @param {string} details the specific details that causes this error
|
|
734
|
+
* @param {string} description the general description for this error
|
|
704
735
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
705
736
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
706
737
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -716,6 +747,7 @@ export declare class UnableToResolveVersionForPropertyError extends ProblemError
|
|
|
716
747
|
* @summary Cyclic property detected in POM file
|
|
717
748
|
* @category OpenSourceEcosystems
|
|
718
749
|
* @param {string} details the specific details that causes this error
|
|
750
|
+
* @param {string} description the general description for this error
|
|
719
751
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
720
752
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
721
753
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -731,6 +763,7 @@ export declare class CyclicPropertyDetectedInPomFileError extends ProblemError {
|
|
|
731
763
|
* @summary Error parsing the XML file
|
|
732
764
|
* @category OpenSourceEcosystems
|
|
733
765
|
* @param {string} details the specific details that causes this error
|
|
766
|
+
* @param {string} description the general description for this error
|
|
734
767
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
735
768
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
736
769
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -746,6 +779,7 @@ export declare class UnableToParseXMLError extends ProblemError {
|
|
|
746
779
|
* @summary Invalid coordinates provided
|
|
747
780
|
* @category OpenSourceEcosystems
|
|
748
781
|
* @param {string} details the specific details that causes this error
|
|
782
|
+
* @param {string} description the general description for this error
|
|
749
783
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
750
784
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
751
785
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -761,6 +795,7 @@ export declare class InvalidCoordinatesError extends ProblemError {
|
|
|
761
795
|
* @summary Skipping group
|
|
762
796
|
* @category OpenSourceEcosystems
|
|
763
797
|
* @param {string} details the specific details that causes this error
|
|
798
|
+
* @param {string} description the general description for this error
|
|
764
799
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
765
800
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
766
801
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -776,6 +811,7 @@ export declare class SkippedGroupError extends ProblemError {
|
|
|
776
811
|
* @summary Pom file not found
|
|
777
812
|
* @category OpenSourceEcosystems
|
|
778
813
|
* @param {string} details the specific details that causes this error
|
|
814
|
+
* @param {string} description the general description for this error
|
|
779
815
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
780
816
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
781
817
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -791,6 +827,7 @@ export declare class PomFileNotFoundError extends ProblemError {
|
|
|
791
827
|
* @summary Missing project from POM
|
|
792
828
|
* @category OpenSourceEcosystems
|
|
793
829
|
* @param {string} details the specific details that causes this error
|
|
830
|
+
* @param {string} description the general description for this error
|
|
794
831
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
795
832
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
796
833
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -806,6 +843,7 @@ export declare class MissingProjectFromPomError extends ProblemError {
|
|
|
806
843
|
* @summary Cannot resolve the target POM from the input XML
|
|
807
844
|
* @category OpenSourceEcosystems
|
|
808
845
|
* @param {string} details the specific details that causes this error
|
|
846
|
+
* @param {string} description the general description for this error
|
|
809
847
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
810
848
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
811
849
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -821,6 +859,7 @@ export declare class CannotResolveTargetPomFromXmlError extends ProblemError {
|
|
|
821
859
|
* @summary Cannot resolve the target POM from the repository
|
|
822
860
|
* @category OpenSourceEcosystems
|
|
823
861
|
* @param {string} details the specific details that causes this error
|
|
862
|
+
* @param {string} description the general description for this error
|
|
824
863
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
825
864
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
826
865
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -836,6 +875,7 @@ export declare class CannotResolveTargetPomFromRepoError extends ProblemError {
|
|
|
836
875
|
* @summary Cannot get the build file repository
|
|
837
876
|
* @category OpenSourceEcosystems
|
|
838
877
|
* @param {string} details the specific details that causes this error
|
|
878
|
+
* @param {string} description the general description for this error
|
|
839
879
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
840
880
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
841
881
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -851,6 +891,7 @@ export declare class CannotGetBuildFileFromRepoError extends ProblemError {
|
|
|
851
891
|
* @summary Unable to create hosted git info
|
|
852
892
|
* @category OpenSourceEcosystems
|
|
853
893
|
* @param {string} details the specific details that causes this error
|
|
894
|
+
* @param {string} description the general description for this error
|
|
854
895
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
855
896
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
856
897
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -866,6 +907,7 @@ export declare class CannotCreateGitHostError extends ProblemError {
|
|
|
866
907
|
* @summary No released version for versions range
|
|
867
908
|
* @category OpenSourceEcosystems
|
|
868
909
|
* @param {string} details the specific details that causes this error
|
|
910
|
+
* @param {string} description the general description for this error
|
|
869
911
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
870
912
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
871
913
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -881,6 +923,7 @@ export declare class NoReleasedVersionForVersionsRangeError extends ProblemError
|
|
|
881
923
|
* @summary Source is not supported
|
|
882
924
|
* @category OpenSourceEcosystems
|
|
883
925
|
* @param {string} details the specific details that causes this error
|
|
926
|
+
* @param {string} description the general description for this error
|
|
884
927
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
885
928
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
886
929
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -896,6 +939,7 @@ export declare class SourceNotSupportedError extends ProblemError {
|
|
|
896
939
|
* @summary Timeout when processing the dependency tree
|
|
897
940
|
* @category OpenSourceEcosystems
|
|
898
941
|
* @param {string} details the specific details that causes this error
|
|
942
|
+
* @param {string} description the general description for this error
|
|
899
943
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
900
944
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
901
945
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -921,6 +965,7 @@ export declare class TimeoutWhenProcessingTheDepTreeError extends ProblemError {
|
|
|
921
965
|
* @summary Cannot reach one or more Maven repositories configured under your Snyk organisations language settings
|
|
922
966
|
* @category OpenSourceEcosystems
|
|
923
967
|
* @param {string} details the specific details that causes this error
|
|
968
|
+
* @param {string} description the general description for this error
|
|
924
969
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
925
970
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
926
971
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -936,6 +981,7 @@ export declare class CannotReachConfiguredRepositoryError extends ProblemError {
|
|
|
936
981
|
* @summary No repository found for A NPM package
|
|
937
982
|
* @category OpenSourceEcosystems
|
|
938
983
|
* @param {string} details the specific details that causes this error
|
|
984
|
+
* @param {string} description the general description for this error
|
|
939
985
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
940
986
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
941
987
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -951,6 +997,7 @@ export declare class NoRepoFoundForTheNPMPackageError extends ProblemError {
|
|
|
951
997
|
* @summary Could not parse NPM registry URL
|
|
952
998
|
* @category OpenSourceEcosystems
|
|
953
999
|
* @param {string} details the specific details that causes this error
|
|
1000
|
+
* @param {string} description the general description for this error
|
|
954
1001
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
955
1002
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
956
1003
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -966,6 +1013,7 @@ export declare class CouldNotParseNPMRegistryURLError extends ProblemError {
|
|
|
966
1013
|
* @summary Could not find a broker resolved URL
|
|
967
1014
|
* @category OpenSourceEcosystems
|
|
968
1015
|
* @param {string} details the specific details that causes this error
|
|
1016
|
+
* @param {string} description the general description for this error
|
|
969
1017
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
970
1018
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
971
1019
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -981,6 +1029,7 @@ export declare class CouldNotFindBrokerURLError extends ProblemError {
|
|
|
981
1029
|
* @summary Unable to replace broker URL
|
|
982
1030
|
* @category OpenSourceEcosystems
|
|
983
1031
|
* @param {string} details the specific details that causes this error
|
|
1032
|
+
* @param {string} description the general description for this error
|
|
984
1033
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
985
1034
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
986
1035
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -996,6 +1045,7 @@ export declare class UnableToReplaceBrokerURLError extends ProblemError {
|
|
|
996
1045
|
* @summary Bad NPM version
|
|
997
1046
|
* @category OpenSourceEcosystems
|
|
998
1047
|
* @param {string} details the specific details that causes this error
|
|
1048
|
+
* @param {string} description the general description for this error
|
|
999
1049
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1000
1050
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1001
1051
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1011,6 +1061,7 @@ export declare class BadNPMVersionError extends ProblemError {
|
|
|
1011
1061
|
* @summary Unknown blob encoding on Github
|
|
1012
1062
|
* @category OpenSourceEcosystems
|
|
1013
1063
|
* @param {string} details the specific details that causes this error
|
|
1064
|
+
* @param {string} description the general description for this error
|
|
1014
1065
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1015
1066
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1016
1067
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1026,6 +1077,7 @@ export declare class UnknownBlobEncodingOnGithubError extends ProblemError {
|
|
|
1026
1077
|
* @summary No result from forked process
|
|
1027
1078
|
* @category OpenSourceEcosystems
|
|
1028
1079
|
* @param {string} details the specific details that causes this error
|
|
1080
|
+
* @param {string} description the general description for this error
|
|
1029
1081
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1030
1082
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1031
1083
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1041,6 +1093,7 @@ export declare class NoResultsFromForkerProcessesError extends ProblemError {
|
|
|
1041
1093
|
* @summary Child Process Execution Error
|
|
1042
1094
|
* @category OpenSourceEcosystems
|
|
1043
1095
|
* @param {string} details the specific details that causes this error
|
|
1096
|
+
* @param {string} description the general description for this error
|
|
1044
1097
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1045
1098
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1046
1099
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1056,6 +1109,7 @@ export declare class ChildProcessExecutionError extends ProblemError {
|
|
|
1056
1109
|
* @summary No valid package upgrades
|
|
1057
1110
|
* @category OpenSourceEcosystems
|
|
1058
1111
|
* @param {string} details the specific details that causes this error
|
|
1112
|
+
* @param {string} description the general description for this error
|
|
1059
1113
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1060
1114
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1061
1115
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1071,6 +1125,7 @@ export declare class NoValidPackageUpgradesError extends ProblemError {
|
|
|
1071
1125
|
* @summary No dependency updates
|
|
1072
1126
|
* @category OpenSourceEcosystems
|
|
1073
1127
|
* @param {string} details the specific details that causes this error
|
|
1128
|
+
* @param {string} description the general description for this error
|
|
1074
1129
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1075
1130
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1076
1131
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1086,6 +1141,7 @@ export declare class NoDependencyUpdatesError extends ProblemError {
|
|
|
1086
1141
|
* @summary Could not parse JSON file
|
|
1087
1142
|
* @category OpenSourceEcosystems
|
|
1088
1143
|
* @param {string} details the specific details that causes this error
|
|
1144
|
+
* @param {string} description the general description for this error
|
|
1089
1145
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1090
1146
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1091
1147
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1101,6 +1157,7 @@ export declare class CouldNotParseJSONFileError extends ProblemError {
|
|
|
1101
1157
|
* @summary Could not Base64 encode
|
|
1102
1158
|
* @category OpenSourceEcosystems
|
|
1103
1159
|
* @param {string} details the specific details that causes this error
|
|
1160
|
+
* @param {string} description the general description for this error
|
|
1104
1161
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1105
1162
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1106
1163
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1116,6 +1173,7 @@ export declare class Base64EncodeError extends ProblemError {
|
|
|
1116
1173
|
* @summary Could not Base64 decode
|
|
1117
1174
|
* @category OpenSourceEcosystems
|
|
1118
1175
|
* @param {string} details the specific details that causes this error
|
|
1176
|
+
* @param {string} description the general description for this error
|
|
1119
1177
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1120
1178
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1121
1179
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1131,6 +1189,7 @@ export declare class Base64DecodeError extends ProblemError {
|
|
|
1131
1189
|
* @summary Missing supported file
|
|
1132
1190
|
* @category OpenSourceEcosystems
|
|
1133
1191
|
* @param {string} details the specific details that causes this error
|
|
1192
|
+
* @param {string} description the general description for this error
|
|
1134
1193
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1135
1194
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1136
1195
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1146,6 +1205,7 @@ export declare class MissingSupportedFileError extends ProblemError {
|
|
|
1146
1205
|
* @summary Invalid configuration
|
|
1147
1206
|
* @category OpenSourceEcosystems
|
|
1148
1207
|
* @param {string} details the specific details that causes this error
|
|
1208
|
+
* @param {string} description the general description for this error
|
|
1149
1209
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1150
1210
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1151
1211
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1168,6 +1228,7 @@ export declare class InvalidConfigurationError extends ProblemError {
|
|
|
1168
1228
|
* @summary Out of Sync Error
|
|
1169
1229
|
* @category OpenSourceEcosystems
|
|
1170
1230
|
* @param {string} details the specific details that causes this error
|
|
1231
|
+
* @param {string} description the general description for this error
|
|
1171
1232
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1172
1233
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1173
1234
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1183,6 +1244,7 @@ export declare class PnpmOutOfSyncError extends ProblemError {
|
|
|
1183
1244
|
* @summary Unsupported pnpm lockfile version
|
|
1184
1245
|
* @category OpenSourceEcosystems
|
|
1185
1246
|
* @param {string} details the specific details that causes this error
|
|
1247
|
+
* @param {string} description the general description for this error
|
|
1186
1248
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1187
1249
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1188
1250
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1198,6 +1260,7 @@ export declare class PnpmUnsupportedLockfileVersionError extends ProblemError {
|
|
|
1198
1260
|
* @summary Yarn package not found
|
|
1199
1261
|
* @category OpenSourceEcosystems
|
|
1200
1262
|
* @param {string} details the specific details that causes this error
|
|
1263
|
+
* @param {string} description the general description for this error
|
|
1201
1264
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1202
1265
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1203
1266
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1213,6 +1276,7 @@ export declare class YarnPackageNotFoundError extends ProblemError {
|
|
|
1213
1276
|
* @summary Unable to reach package registry
|
|
1214
1277
|
* @category OpenSourceEcosystems
|
|
1215
1278
|
* @param {string} details the specific details that causes this error
|
|
1279
|
+
* @param {string} description the general description for this error
|
|
1216
1280
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1217
1281
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1218
1282
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1228,6 +1292,7 @@ export declare class UnableToReachRegistryError extends ProblemError {
|
|
|
1228
1292
|
* @summary Lock file is outdated
|
|
1229
1293
|
* @category OpenSourceEcosystems
|
|
1230
1294
|
* @param {string} details the specific details that causes this error
|
|
1295
|
+
* @param {string} description the general description for this error
|
|
1231
1296
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1232
1297
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1233
1298
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1243,6 +1308,7 @@ export declare class OutdatedYarnLockFileError extends ProblemError {
|
|
|
1243
1308
|
* @summary Unable to read from remote repository
|
|
1244
1309
|
* @category OpenSourceEcosystems
|
|
1245
1310
|
* @param {string} details the specific details that causes this error
|
|
1311
|
+
* @param {string} description the general description for this error
|
|
1246
1312
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1247
1313
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1248
1314
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1261,6 +1327,7 @@ export declare class PermissionDeniedError extends ProblemError {
|
|
|
1261
1327
|
* @summary Unsupported manifest file type for remediation
|
|
1262
1328
|
* @category OpenSourceEcosystems
|
|
1263
1329
|
* @param {string} details the specific details that causes this error
|
|
1330
|
+
* @param {string} description the general description for this error
|
|
1264
1331
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1265
1332
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1266
1333
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1276,6 +1343,7 @@ export declare class UnsupportedRequirementsFileError extends ProblemError {
|
|
|
1276
1343
|
* @summary Received more manifests than expected
|
|
1277
1344
|
* @category OpenSourceEcosystems
|
|
1278
1345
|
* @param {string} details the specific details that causes this error
|
|
1346
|
+
* @param {string} description the general description for this error
|
|
1279
1347
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1280
1348
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1281
1349
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1291,6 +1359,7 @@ export declare class TooManyManifestFilesError extends ProblemError {
|
|
|
1291
1359
|
* @summary Failed to apply dependency updates
|
|
1292
1360
|
* @category OpenSourceEcosystems
|
|
1293
1361
|
* @param {string} details the specific details that causes this error
|
|
1362
|
+
* @param {string} description the general description for this error
|
|
1294
1363
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1295
1364
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1296
1365
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1307,6 +1376,7 @@ export declare class FailedToApplyDependencyUpdatesError extends ProblemError {
|
|
|
1307
1376
|
* @summary Python package not found
|
|
1308
1377
|
* @category OpenSourceEcosystems
|
|
1309
1378
|
* @param {string} details the specific details that causes this error
|
|
1379
|
+
* @param {string} description the general description for this error
|
|
1310
1380
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1311
1381
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1312
1382
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1323,6 +1393,7 @@ export declare class PythonPackageNotFoundError extends ProblemError {
|
|
|
1323
1393
|
* @summary Syntax errors found in manifest file
|
|
1324
1394
|
* @category OpenSourceEcosystems
|
|
1325
1395
|
* @param {string} details the specific details that causes this error
|
|
1396
|
+
* @param {string} description the general description for this error
|
|
1326
1397
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1327
1398
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1328
1399
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1340,6 +1411,7 @@ export declare class SyntaxIssuesError extends ProblemError {
|
|
|
1340
1411
|
* @summary Python version not supported
|
|
1341
1412
|
* @category OpenSourceEcosystems
|
|
1342
1413
|
* @param {string} details the specific details that causes this error
|
|
1414
|
+
* @param {string} description the general description for this error
|
|
1343
1415
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1344
1416
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1345
1417
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1356,6 +1428,7 @@ export declare class PipUnsupportedPythonVersionError extends ProblemError {
|
|
|
1356
1428
|
* @summary Packages versions caused conflicts
|
|
1357
1429
|
* @category OpenSourceEcosystems
|
|
1358
1430
|
* @param {string} details the specific details that causes this error
|
|
1431
|
+
* @param {string} description the general description for this error
|
|
1359
1432
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1360
1433
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1361
1434
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1373,6 +1446,7 @@ export declare class PythonVersionConfictError extends ProblemError {
|
|
|
1373
1446
|
* @summary No matching distribution found for one or more of the packages
|
|
1374
1447
|
* @category OpenSourceEcosystems
|
|
1375
1448
|
* @param {string} details the specific details that causes this error
|
|
1449
|
+
* @param {string} description the general description for this error
|
|
1376
1450
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1377
1451
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1378
1452
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1388,6 +1462,7 @@ export declare class PipNoMatchingPythonDistributionError extends ProblemError {
|
|
|
1388
1462
|
* @summary Packages installation failed
|
|
1389
1463
|
* @category OpenSourceEcosystems
|
|
1390
1464
|
* @param {string} details the specific details that causes this error
|
|
1465
|
+
* @param {string} description the general description for this error
|
|
1391
1466
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1392
1467
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1393
1468
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1404,6 +1479,7 @@ export declare class InstallationFailureError extends ProblemError {
|
|
|
1404
1479
|
* @summary Python version not supported
|
|
1405
1480
|
* @category OpenSourceEcosystems
|
|
1406
1481
|
* @param {string} details the specific details that causes this error
|
|
1482
|
+
* @param {string} description the general description for this error
|
|
1407
1483
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1408
1484
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1409
1485
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -1420,6 +1496,7 @@ export declare class PipenvUnsupportedPythonVersionError extends ProblemError {
|
|
|
1420
1496
|
* @summary No matching distribution found for one or more of the packages
|
|
1421
1497
|
* @category OpenSourceEcosystems
|
|
1422
1498
|
* @param {string} details the specific details that causes this error
|
|
1499
|
+
* @param {string} description the general description for this error
|
|
1423
1500
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
1424
1501
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
1425
1502
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|