generatedErrorObjects.js 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  1. /* global errors */
  2. /* eslint-disable max-len */
  3. var e0 = new Error('wbemErrFailed')
  4. e0.description = 'The call failed.'
  5. e0.code = 2147749889
  6. errors[2147749889] = e0
  7. var e1 = new Error('wbemErrNotFound')
  8. e1.description = 'The object could not be found.'
  9. e1.code = 2147749890
  10. errors[2147749890] = e1
  11. var e2 = new Error('wbemErrAccessDenied')
  12. e2.description = 'The current user does not have permission to perform the action.'
  13. e2.code = 2147749891
  14. errors[2147749891] = e2
  15. var e3 = new Error('wbemErrProviderFailure')
  16. e3.description = 'The provider has failed at some time other than during initialization.'
  17. e3.code = 2147749892
  18. errors[2147749892] = e3
  19. var e4 = new Error('wbemErrTypeMismatch')
  20. e4.description = 'A type mismatch occurred.'
  21. e4.code = 2147749893
  22. errors[2147749893] = e4
  23. var e5 = new Error('wbemErrOutOfMemory')
  24. e5.description = 'There was not enough memory for the operation.'
  25. e5.code = 2147749894
  26. errors[2147749894] = e5
  27. var e6 = new Error('wbemErrInvalidContext')
  28. e6.description = 'The SWbemNamedValue object is not valid.'
  29. e6.code = 2147749895
  30. errors[2147749895] = e6
  31. var e7 = new Error('wbemErrInvalidParameter')
  32. e7.description = 'One of the parameters to the call is not correct.'
  33. e7.code = 2147749896
  34. errors[2147749896] = e7
  35. var e8 = new Error('wbemErrNotAvailable')
  36. e8.description = 'The resource, typically a remote server, is not currently available.'
  37. e8.code = 2147749897
  38. errors[2147749897] = e8
  39. var e9 = new Error('wbemErrCriticalError')
  40. e9.description = 'An internal, critical, and unexpected error occurred. Report this error to Microsoft Technical Support.'
  41. e9.code = 2147749898
  42. errors[2147749898] = e9
  43. var e10 = new Error('wbemErrInvalidStream')
  44. e10.description = 'One or more network packets were corrupted during a remote session.'
  45. e10.code = 2147749899
  46. errors[2147749899] = e10
  47. var e11 = new Error('wbemErrNotSupported')
  48. e11.description = 'The feature or operation is not supported.'
  49. e11.code = 2147749900
  50. errors[2147749900] = e11
  51. var e12 = new Error('wbemErrInvalidSuperclass')
  52. e12.description = 'The parent class specified is not valid.'
  53. e12.code = 2147749901
  54. errors[2147749901] = e12
  55. var e13 = new Error('wbemErrInvalidNamespace')
  56. e13.description = 'The namespace specified could not be found.'
  57. e13.code = 2147749902
  58. errors[2147749902] = e13
  59. var e14 = new Error('wbemErrInvalidObject')
  60. e14.description = 'The specified instance is not valid.'
  61. e14.code = 2147749903
  62. errors[2147749903] = e14
  63. var e15 = new Error('wbemErrInvalidClass')
  64. e15.description = 'The specified class is not valid.'
  65. e15.code = 2147749904
  66. errors[2147749904] = e15
  67. var e16 = new Error('wbemErrProviderNotFound')
  68. e16.description = 'A provider referenced in the schema does not have a corresponding registration.'
  69. e16.code = 2147749905
  70. errors[2147749905] = e16
  71. var e17 = new Error('wbemErrInvalidProviderRegistration')
  72. e17.description = 'A provider referenced in the schema has an incorrect or incomplete registration. This error may be caused by a missing pragma namespace command in the MOF file used to register the provider, resulting in the provider being registered in the wrong WMI namespace. This error may also be caused by a corrupt repository, which may be fixed by deleting it and recompiling the MOF files.'
  73. e17.code = 2147749906
  74. errors[2147749906] = e17
  75. var e18 = new Error('wbemErrProviderLoadFailure')
  76. e18.description = 'COM cannot locate a provider referenced in the schema. This error may be caused by any of the following:'
  77. e18.code = 2147749907
  78. errors[2147749907] = e18
  79. var e19 = new Error('wbemErrInitializationFailure')
  80. e19.description = 'A component, such as a provider, failed to initialize for internal reasons.'
  81. e19.code = 2147749908
  82. errors[2147749908] = e19
  83. var e20 = new Error('wbemErrTransportFailure')
  84. e20.description = 'A networking error occurred, preventing normal operation.'
  85. e20.code = 2147749909
  86. errors[2147749909] = e20
  87. var e21 = new Error('wbemErrInvalidOperation')
  88. e21.description = 'The requested operation is not valid. This error usually applies to invalid attempts to delete classes or properties.'
  89. e21.code = 2147749910
  90. errors[2147749910] = e21
  91. var e22 = new Error('wbemErrInvalidQuery')
  92. e22.description = 'The requested operation is not valid. This error usually applies to invalid attempts to delete classes or properties.'
  93. e22.code = 2147749911
  94. errors[2147749911] = e22
  95. var e23 = new Error('wbemErrInvalidQueryType')
  96. e23.description = 'The requested query language is not supported.'
  97. e23.code = 2147749912
  98. errors[2147749912] = e23
  99. var e24 = new Error('wbemErrAlreadyExists')
  100. e24.description = 'In a put operation, the wbemChangeFlagCreateOnly flag was specified, but the instance already exists.'
  101. e24.code = 2147749913
  102. errors[2147749913] = e24
  103. var e25 = new Error('wbemErrOverrideNotAllowed')
  104. e25.description = 'It is not possible to perform the add operation on this qualifier because the owning object does not permit overrides.'
  105. e25.code = 2147749914
  106. errors[2147749914] = e25
  107. var e26 = new Error('wbemErrPropagatedQualifier')
  108. e26.description = 'The user attempted to delete a qualifier that was not owned. The qualifier was inherited from a parent class.'
  109. e26.code = 2147749915
  110. errors[2147749915] = e26
  111. var e27 = new Error('wbemErrPropagatedProperty')
  112. e27.description = 'The user attempted to delete a property that was not owned. The property was inherited from a parent class.'
  113. e27.code = 2147749916
  114. errors[2147749916] = e27
  115. var e28 = new Error('wbemErrUnexpected')
  116. e28.description = 'The client made an unexpected and illegal sequence of calls, such as calling EndEnumeration before calling BeginEnumeration.'
  117. e28.code = 2147749917
  118. errors[2147749917] = e28
  119. var e29 = new Error('wbemErrIllegalOperation')
  120. e29.description = 'The user requested an illegal operation, such as spawning a class from an instance.'
  121. e29.code = 2147749918
  122. errors[2147749918] = e29
  123. var e30 = new Error('wbemErrCannotBeKey')
  124. e30.description = 'There was an illegal attempt to specify a key qualifier on a property that cannot be a key. The keys are specified in the class definition for an object, and cannot be altered on a per-instance basis.'
  125. e30.code = 2147749919
  126. errors[2147749919] = e30
  127. var e31 = new Error('wbemErrIncompleteClass')
  128. e31.description = 'The current object is not a valid class definition. Either it is incomplete, or it has not been registered with WMI using SWbemObject.Put_.'
  129. e31.code = 2147749920
  130. errors[2147749920] = e31
  131. var e32 = new Error('wbemErrInvalidSyntax')
  132. e32.description = 'The syntax of an input parameter is incorrect for the applicable data structure. For example, when a CIM datetime structure does not have the correct format when passed to SWbemDateTime.SetFileTime.'
  133. e32.code = 2147749921
  134. errors[2147749921] = e32
  135. var e33 = new Error('wbemErrNondecoratedObject')
  136. e33.description = 'Reserved for future use.'
  137. e33.code = 2147749922
  138. errors[2147749922] = e33
  139. var e34 = new Error('wbemErrReadOnly')
  140. e34.description = 'The property that you are attempting to modify is read-only.'
  141. e34.code = 2147749923
  142. errors[2147749923] = e34
  143. var e35 = new Error('wbemErrProviderNotCapable')
  144. e35.description = 'The provider cannot perform the requested operation. This would include a query that is too complex, retrieving an instance, creating or updating a class, deleting a class, or enumerating a class.'
  145. e35.code = 2147749924
  146. errors[2147749924] = e35
  147. var e36 = new Error('wbemErrClassHasChildren')
  148. e36.description = 'An attempt was made to make a change that would invalidate a subclass.'
  149. e36.code = 2147749925
  150. errors[2147749925] = e36
  151. var e37 = new Error('wbemErrClassHasInstances')
  152. e37.description = 'An attempt has been made to delete or modify a class that has instances.'
  153. e37.code = 2147749926
  154. errors[2147749926] = e37
  155. var e38 = new Error('wbemErrQueryNotImplemented')
  156. e38.description = 'Reserved for future use.'
  157. e38.code = 2147749927
  158. errors[2147749927] = e38
  159. var e39 = new Error('wbemErrIllegalNull')
  160. e39.description = 'A value of Nothing was specified for a property that may not be Nothing, such as one that is marked by a Key, Indexed, or Not_Null qualifier.'
  161. e39.code = 2147749928
  162. errors[2147749928] = e39
  163. var e40 = new Error('wbemErrInvalidQualifierType')
  164. e40.description = 'The CIM type specified for a property is not valid.'
  165. e40.code = 2147749929
  166. errors[2147749929] = e40
  167. var e41 = new Error('wbemErrInvalidPropertyType')
  168. e41.description = 'The CIM type specified for a property is not valid.'
  169. e41.code = 2147749930
  170. errors[2147749930] = e41
  171. var e42 = new Error('wbemErrValueOutOfRange')
  172. e42.description = 'The request was made with an out-of-range value, or is incompatible with the type.'
  173. e42.code = 2147749931
  174. errors[2147749931] = e42
  175. var e43 = new Error('wbemErrCannotBeSingleton')
  176. e43.description = 'An illegal attempt was made to make a class singleton, such as when the class is derived from a non-singleton class.'
  177. e43.code = 2147749932
  178. errors[2147749932] = e43
  179. var e44 = new Error('wbemErrInvalidCimType')
  180. e44.description = 'The CIM type specified is not valid.'
  181. e44.code = 2147749933
  182. errors[2147749933] = e44
  183. var e45 = new Error('wbemErrInvalidMethod')
  184. e45.description = 'The requested method is not available.'
  185. e45.code = 2147749934
  186. errors[2147749934] = e45
  187. var e46 = new Error('wbemErrInvalidMethodParameters')
  188. e46.description = 'The parameters provided for the method are not valid.'
  189. e46.code = 2147749935
  190. errors[2147749935] = e46
  191. var e47 = new Error('wbemErrSystemProperty')
  192. e47.description = 'There was an attempt to get qualifiers on a system property.'
  193. e47.code = 2147749936
  194. errors[2147749936] = e47
  195. var e48 = new Error('wbemErrInvalidProperty')
  196. e48.description = 'The property type is not recognized.'
  197. e48.code = 2147749937
  198. errors[2147749937] = e48
  199. var e49 = new Error('wbemErrCallCancelled')
  200. e49.description = 'An asynchronous process has been canceled internally or by the user. Note that due to the timing and nature of the asynchronous operation the operation may not have been truly canceled.'
  201. e49.code = 2147749938
  202. errors[2147749938] = e49
  203. var e50 = new Error('wbemErrShuttingDown')
  204. e50.description = 'The user has requested an operation while WMI is in the process of shutting down.'
  205. e50.code = 2147749939
  206. errors[2147749939] = e50
  207. var e51 = new Error('wbemErrPropagatedMethod')
  208. e51.description = 'An attempt was made to reuse an existing method name from a parent class, and the signatures did not match.'
  209. e51.code = 2147749940
  210. errors[2147749940] = e51
  211. var e52 = new Error('wbemErrUnsupportedParameter')
  212. e52.description = 'One or more parameter values, such as a query text, is too complex or unsupported. WMI is therefore requested to retry the operation with simpler parameters.'
  213. e52.code = 2147749941
  214. errors[2147749941] = e52
  215. var e53 = new Error('wbemErrMissingParameter')
  216. e53.description = 'A parameter was missing from the method call.'
  217. e53.code = 2147749942
  218. errors[2147749942] = e53
  219. var e54 = new Error('wbemErrInvalidParameterId')
  220. e54.description = 'A method parameter has an ID qualifier that is not valid.'
  221. e54.code = 2147749943
  222. errors[2147749943] = e54
  223. var e55 = new Error('wbemErrNonConsecutiveParameterIds')
  224. e55.description = 'One or more of the method parameters have ID qualifiers that are out of sequence.'
  225. e55.code = 2147749944
  226. errors[2147749944] = e55
  227. var e56 = new Error('wbemErrParameterIdOnRetval')
  228. e56.description = 'The return value for a method has an ID qualifier.'
  229. e56.code = 2147749945
  230. errors[2147749945] = e56
  231. var e57 = new Error('wbemErrInvalidObjectPath')
  232. e57.description = 'The specified object path was not valid.'
  233. e57.code = 2147749946
  234. errors[2147749946] = e57
  235. var e58 = new Error('wbemErrOutOfDiskSpace')
  236. e58.description = 'Windows Server 2003: Disk is out of space or the 4 GB limit on WMI repository (CIM repository) size is reached.'
  237. e58.code = 2147749947
  238. errors[2147749947] = e58
  239. var e59 = new Error('wbemErrBufferTooSmall')
  240. e59.description = 'The supplied buffer was too small to hold all the objects in the enumerator or to read a string property.'
  241. e59.code = 2147749948
  242. errors[2147749948] = e59
  243. var e60 = new Error('wbemErrUnsupportedPutExtension')
  244. e60.description = 'The provider does not support the requested put operation.'
  245. e60.code = 2147749949
  246. errors[2147749949] = e60
  247. var e61 = new Error('wbemErrUnknownObjectType')
  248. e61.description = 'An object with an incorrect type or version was encountered during marshaling.'
  249. e61.code = 2147749950
  250. errors[2147749950] = e61
  251. var e62 = new Error('wbemErrUnknownPacketType')
  252. e62.description = 'A packet with an incorrect type or version was encountered during marshaling.'
  253. e62.code = 2147749951
  254. errors[2147749951] = e62
  255. var e63 = new Error('wbemErrMarshalVersionMismatch')
  256. e63.description = 'The packet has an unsupported version.'
  257. e63.code = 2147749952
  258. errors[2147749952] = e63
  259. var e64 = new Error('wbemErrMarshalInvalidSignature')
  260. e64.description = 'The packet appears to be corrupted.'
  261. e64.code = 2147749953
  262. errors[2147749953] = e64
  263. var e65 = new Error('wbemErrInvalidQualifier')
  264. e65.description = 'An attempt has been made to mismatch qualifiers, such as putting [key] on an object instead of a property.'
  265. e65.code = 2147749954
  266. errors[2147749954] = e65
  267. var e66 = new Error('wbemErrInvalidDuplicateParameter')
  268. e66.description = 'A duplicate parameter has been declared in a CIM method.'
  269. e66.code = 2147749955
  270. errors[2147749955] = e66
  271. var e67 = new Error('wbemErrTooMuchData')
  272. e67.description = 'Reserved for future use.'
  273. e67.code = 2147749956
  274. errors[2147749956] = e67
  275. var e68 = new Error('wbemErrServerTooBusy')
  276. e68.description = 'A call to IWbemObjectSink::Indicate has failed. The provider may choose to refire the event.'
  277. e68.code = 2147749957
  278. errors[2147749957] = e68
  279. var e69 = new Error('wbemErrInvalidFlavor')
  280. e69.description = 'The specified flavor was not valid.'
  281. e69.code = 2147749958
  282. errors[2147749958] = e69
  283. var e70 = new Error('wbemErrCircularReference')
  284. e70.description = 'An attempt has been made to create a reference that is circular (for example, deriving a class from itself).'
  285. e70.code = 2147749959
  286. errors[2147749959] = e70
  287. var e71 = new Error('wbemErrUnsupportedClassUpdate')
  288. e71.description = 'The specified class is not supported.'
  289. e71.code = 2147749960
  290. errors[2147749960] = e71
  291. var e72 = new Error('wbemErrCannotChangeKeyInheritance')
  292. e72.description = 'An attempt was made to change a key when instances or subclasses are already using the key.'
  293. e72.code = 2147749961
  294. errors[2147749961] = e72
  295. var e73 = new Error('wbemErrCannotChangeIndexInheritance')
  296. e73.description = 'An attempt was made to change an index when instances or subclasses are already using the index.'
  297. e73.code = 2147749968
  298. errors[2147749968] = e73
  299. var e74 = new Error('wbemErrTooManyProperties')
  300. e74.description = 'An attempt was made to create more properties than the current version of the class supports.'
  301. e74.code = 2147749969
  302. errors[2147749969] = e74
  303. var e75 = new Error('wbemErrUpdateTypeMismatch')
  304. e75.description = 'A property was redefined with a conflicting type in a derived class.'
  305. e75.code = 2147749970
  306. errors[2147749970] = e75
  307. var e76 = new Error('wbemErrUpdateOverrideNotAllowed')
  308. e76.description = 'An attempt was made in a derived class to override a non-overrideable qualifier.'
  309. e76.code = 2147749971
  310. errors[2147749971] = e76
  311. var e77 = new Error('wbemErrUpdatePropagatedMethod')
  312. e77.description = 'A method was redeclared with a conflicting signature in a derived class.'
  313. e77.code = 2147749972
  314. errors[2147749972] = e77
  315. var e78 = new Error('wbemErrMethodNotImplemented')
  316. e78.description = 'An attempt was made to execute a method not marked with [implemented] in any relevant class.'
  317. e78.code = 2147749973
  318. errors[2147749973] = e78
  319. var e79 = new Error('wbemErrMethodDisabled')
  320. e79.description = 'An attempt was made to execute a method marked with [disabled].'
  321. e79.code = 2147749974
  322. errors[2147749974] = e79
  323. var e80 = new Error('wbemErrRefresherBusy')
  324. e80.description = 'The refresher is busy with another operation.'
  325. e80.code = 2147749975
  326. errors[2147749975] = e80
  327. var e81 = new Error('wbemErrUnparsableQuery')
  328. e81.description = 'The filtering query is syntactically not valid.'
  329. e81.code = 2147749976
  330. errors[2147749976] = e81
  331. var e82 = new Error('wbemErrNotEventClass')
  332. e82.description = 'The FROM clause of a filtering query references a class that is not an event class (not derived from __Event).'
  333. e82.code = 2147749977
  334. errors[2147749977] = e82
  335. var e83 = new Error('wbemErrMissingGroupWithin')
  336. e83.description = 'A GROUP BY clause was used without the corresponding GROUP WITHIN clause.'
  337. e83.code = 2147749978
  338. errors[2147749978] = e83
  339. var e84 = new Error('wbemErrMissingAggregationList')
  340. e84.description = 'A GROUP BY clause was used. Aggregation on all properties is not supported.'
  341. e84.code = 2147749979
  342. errors[2147749979] = e84
  343. var e85 = new Error('wbemErrPropertyNotAnObject')
  344. e85.description = 'Dot notation was used on a property that is not an embedded object.'
  345. e85.code = 2147749980
  346. errors[2147749980] = e85
  347. var e86 = new Error('wbemErrAggregatingByObject')
  348. e86.description = 'A GROUP BY clause references a property that is an embedded object without using dot notation.'
  349. e86.code = 2147749981
  350. errors[2147749981] = e86
  351. var e87 = new Error('wbemErrUninterpretableProviderQuery')
  352. e87.description = 'An event provider registration query ( __EventProviderRegistration) did not specify the classes for which events were provided.'
  353. e87.code = 2147749983
  354. errors[2147749983] = e87
  355. var e88 = new Error('wbemErrBackupRestoreWinmgmtRunning')
  356. e88.description = 'An request was made to back up or restore the repository while WMI was using it.'
  357. e88.code = 2147749984
  358. errors[2147749984] = e88
  359. var e89 = new Error('wbemErrQueueOverflow')
  360. e89.description = 'The asynchronous delivery queue overflowed due to the event consumer being too slow.'
  361. e89.code = 2147749985
  362. errors[2147749985] = e89
  363. var e90 = new Error('wbemErrPrivilegeNotHeld')
  364. e90.description = 'The operation failed because the client did not have the necessary security privilege.'
  365. e90.code = 2147749986
  366. errors[2147749986] = e90
  367. var e91 = new Error('wbemErrInvalidOperator')
  368. e91.description = 'The operator is not valid for this property type.'
  369. e91.code = 2147749987
  370. errors[2147749987] = e91
  371. var e92 = new Error('wbemErrLocalCredentials')
  372. e92.description = 'The user specified a username, password or authority for a local connection. The user must use a blank username/password and rely on default security.'
  373. e92.code = 2147749988
  374. errors[2147749988] = e92
  375. var e93 = new Error('wbemErrCannotBeAbstract')
  376. e93.description = 'The class was made abstract when its parent class is not abstract.'
  377. e93.code = 2147749989
  378. errors[2147749989] = e93
  379. var e94 = new Error('wbemErrAmendedObject')
  380. e94.description = 'An amended object was put without the wbemFlagUseAmendedQualifiers flag being specified.'
  381. e94.code = 2147749990
  382. errors[2147749990] = e94
  383. var e95 = new Error('wbemErrClientTooSlow')
  384. e95.description = 'Windows Server 2003: The client was not retrieving objects quickly enough from an enumeration. This constant is returned when a client creates an enumeration object but does not retrieve objects from the enumerator in a timely fashion, causing the enumerator\'s object caches to get backed up.'
  385. e95.code = 2147749991
  386. errors[2147749991] = e95
  387. var e96 = new Error('wbemErrNullSecurityDescriptor')
  388. e96.description = 'Windows Server 2003: A null security descriptor was used.'
  389. e96.code = 2147749992
  390. errors[2147749992] = e96
  391. var e97 = new Error('wbemErrTimeout')
  392. e97.description = 'Windows Server 2003: The operation timed out.'
  393. e97.code = 2147749993
  394. errors[2147749993] = e97
  395. var e98 = new Error('wbemErrInvalidAssociation')
  396. e98.description = 'Windows Server 2003: The association being used is not valid.'
  397. e98.code = 2147749994
  398. errors[2147749994] = e98
  399. var e99 = new Error('wbemErrAmbiguousOperation')
  400. e99.description = 'Windows Server 2003: The operation was ambiguous.'
  401. e99.code = 2147749995
  402. errors[2147749995] = e99
  403. var e100 = new Error('wbemErrQuotaViolation')
  404. e100.description = 'Windows Server 2003: WMI is taking up too much memory. This could be caused either by low memory availability or excessive memory consumption by WMI.'
  405. e100.code = 2147749996
  406. errors[2147749996] = e100
  407. var e101 = new Error('wbemErrTransactionConflict')
  408. e101.description = 'Windows Server 2003: The operation resulted in a transaction conflict.'
  409. e101.code = 2147749997
  410. errors[2147749997] = e101
  411. var e102 = new Error('wbemErrForcedRollback')
  412. e102.description = 'Windows Server 2003: The transaction forced a rollback.'
  413. e102.code = 2147749998
  414. errors[2147749998] = e102
  415. var e103 = new Error('wbemErrUnsupportedLocale')
  416. e103.description = 'Windows Server 2003: The locale used in the call is not supported.'
  417. e103.code = 2147749999
  418. errors[2147749999] = e103
  419. var e104 = new Error('wbemErrHandleOutOfDate')
  420. e104.description = 'Windows Server 2003: The object handle is out of date.'
  421. e104.code = 2147750000
  422. errors[2147750000] = e104
  423. var e105 = new Error('wbemErrConnectionFailed')
  424. e105.description = 'Windows Server 2003: Indicates that the connection to the SQL database failed.'
  425. e105.code = 2147750001
  426. errors[2147750001] = e105
  427. var e106 = new Error('wbemErrInvalidHandleRequest')
  428. e106.description = 'Windows Server 2003: The handle request was not valid.'
  429. e106.code = 2147750002
  430. errors[2147750002] = e106
  431. var e107 = new Error('wbemErrPropertyNameTooWide')
  432. e107.description = 'Windows Server 2003: The property name contains more than 255 characters.'
  433. e107.code = 2147750003
  434. errors[2147750003] = e107
  435. var e108 = new Error('wbemErrClassNameTooWide')
  436. e108.description = 'Windows Server 2003: The class name contains more than 255 characters.'
  437. e108.code = 2147750004
  438. errors[2147750004] = e108
  439. var e109 = new Error('wbemErrMethodNameTooWide')
  440. e109.description = 'Windows Server 2003: The method name contains more than 255 characters.'
  441. e109.code = 2147750005
  442. errors[2147750005] = e109
  443. var e110 = new Error('wbemErrQualifierNameTooWide')
  444. e110.description = 'Windows Server 2003: The qualifier name contains more than 255 characters.'
  445. e110.code = 2147750006
  446. errors[2147750006] = e110
  447. var e111 = new Error('wbemErrRerunCommand')
  448. e111.description = 'Windows Server 2003: Indicates that an SQL command should be rerun because there is a deadlock in SQL. This can be returned only when data is being stored in an SQL database.'
  449. e111.code = 2147750007
  450. errors[2147750007] = e111
  451. var e112 = new Error('wbemErrDatabaseVerMismatch')
  452. e112.description = 'Windows Server 2003: The database version does not match the version that the repository driver processes.'
  453. e112.code = 2147750008
  454. errors[2147750008] = e112
  455. var e113 = new Error('wbemErrVetoDelete')
  456. e113.description = 'Windows Server 2003: WMI cannot do the delete operation because the provider does not allow it.'
  457. e113.code = 2147750010
  458. errors[2147750010] = e113
  459. var e114 = new Error('wbemErrVetoPut')
  460. e114.description = 'Windows Server 2003: WMI cannot do the put operation because the provider does not allow it.'
  461. e114.code = 2147750010
  462. errors[2147750010] = e114
  463. var e115 = new Error('wbemErrInvalidLocale')
  464. e115.description = 'Windows Server 2003: The specified locale identifier was not valid for the operation.'
  465. e115.code = 2147750016
  466. errors[2147750016] = e115
  467. var e116 = new Error('wbemErrProviderSuspended')
  468. e116.description = 'Windows Server 2003: The provider is suspended.'
  469. e116.code = 2147750017
  470. errors[2147750017] = e116
  471. var e117 = new Error('wbemErrSynchronizationRequired')
  472. e117.description = 'Windows Server 2003: The object must be committed and retrieved again before the requested operation can succeed. This constant is returned when an object must be committed and re-retrieved to see the property value.'
  473. e117.code = 2147750018
  474. errors[2147750018] = e117
  475. var e118 = new Error('wbemErrNoSchema')
  476. e118.description = 'Windows Server 2003: The operation cannot be completed because no schema is available.'
  477. e118.code = 2147750019
  478. errors[2147750019] = e118
  479. var e119 = new Error('wbemErrProviderAlreadyRegistered')
  480. e119.description = 'Windows Server 2003: The provider registration cannot be done because the provider is already registered.'
  481. e119.code = 2147750020
  482. errors[2147750020] = e119
  483. var e120 = new Error('wbemErrProviderNotRegistered')
  484. e120.description = 'Windows Server 2003: The provider for the requested data is not registered.'
  485. e120.code = 2147750021
  486. errors[2147750021] = e120
  487. var e121 = new Error('wbemErrFatalTransportError')
  488. e121.description = 'Windows Server 2003: A fatal transport error occurred and other transport will not be attempted.'
  489. e121.code = 2147750022
  490. errors[2147750022] = e121
  491. var e122 = new Error('wbemErrEncryptedConnectionRequired')
  492. e122.description = 'Windows Server 2003: The client connection to WINMGMT must be encrypted for this operation. The IWbemServices proxy security settings should be adjusted and the operation retried.'
  493. e122.code = 2147750023
  494. errors[2147750023] = e122
  495. var e123 = new Error('wbemErrRegistrationTooBroad')
  496. e123.description = 'Windows Server 2003: The provider registration overlaps with the system event domain.'
  497. e123.code = 2147753985
  498. errors[2147753985] = e123
  499. var e124 = new Error('wbemErrRegistrationTooPrecise')
  500. e124.description = 'Windows Server 2003: A WITHIN clause was not used in this query.'
  501. e124.code = 2147753986
  502. errors[2147753986] = e124
  503. var e125 = new Error('wbemErrTimedout')
  504. e125.description = 'Windows Server 2003: Automation-specific error.'
  505. e125.code = 2147758081
  506. errors[2147758081] = e125
  507. var e126 = new Error('wbemErrResetToDefault')
  508. e126.description = 'undefined'
  509. e126.code = 2147758082
  510. errors[2147758082] = e126