microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/common/error/internalErrorCode.ts
57lines · modeblame
17161993Meena Kunnathur Balakrishnan10 years ago | 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT license. See LICENSE file in the project root for details. | |
| 3 | | |
| 4 | export enum InternalErrorCode { | |
| 5 | // Command Executor errors | |
898cb3c6Meena Kunnathur Balakrishnan10 years ago | 6 | CommandFailed = 101, |
| 7 | CommandFailedWithErrorCode = 102, | |
| 8 | PackagerStartFailed = 103, | |
| 9 | FailedToRunOnAndroid = 104, | |
| 10 | FailedToRunOnIos = 105, | |
| 11 | FailedToStartPackager = 106, | |
| 12 | FailedToStopPackager = 107, | |
5e651f3edigeff10 years ago | 13 | PackagerRunningInDifferentPort = 108, |
17161993Meena Kunnathur Balakrishnan10 years ago | 14 | |
| 15 | // Device Deployer errors | |
| 16 | IDeviceInstallerNotFound = 201, | |
| 17 | | |
| 18 | // Device Runner errors | |
| 19 | DeviceNotPluggedIn = 301, | |
| 20 | DeveloperDiskImgNotMountable = 302, | |
| 21 | UnableToLaunchApplication = 303, | |
| 22 | ApplicationLaunchTimedOut = 304, | |
| 23 | | |
| 24 | // iOS Platform errors | |
| 25 | IOSSimulatorNotLaunchable = 401, | |
| 26 | | |
| 27 | // Packager errors | |
| 28 | OpnPackagerLocationNotFound = 501, | |
| 29 | OpnPackagerNotFound = 502, | |
190e393cMeena Kunnathur Balakrishnan10 years ago | 30 | FailedToStopPackagerOnExit = 503, |
17161993Meena Kunnathur Balakrishnan10 years ago | 31 | |
| 32 | // React Native Project errors | |
| 33 | ProjectVersionNotParsable = 601, | |
| 34 | ProjectVersionUnsupported = 602, | |
190e393cMeena Kunnathur Balakrishnan10 years ago | 35 | ProjectVersionNotReadable = 603, |
| 36 | | |
| 37 | // Miscellaneous errors | |
| 38 | TelemetryInitializationFailed = 701, | |
| 39 | ExtensionActivationFailed = 702, | |
| 40 | DebuggerStubLauncherFailed = 703, | |
| 41 | IntellisenseSetupFailed = 704, | |
| 42 | NodeDebuggerConfigurationFailed = 705, | |
| 43 | DebuggingFailed = 706, | |
2166bdabdigeff10 years ago | 44 | RNTempFolderDeletionFailed = 707, |
18d8ad2adigeff10 years ago | 45 | DebuggingFailedInNodeWrapper = 708, |
514df4f4Patricio Beltran10 years ago | 46 | PlatformNotSupported = 709, |
| 47 | WorkspaceNotFound = 710, | |
2166bdabdigeff10 years ago | 48 | |
| 49 | // Activation errors | |
| 50 | CouldNotFindLocationOfNodeDebugger = 801, | |
df4bce40digeff10 years ago | 51 | |
| 52 | // Validating user input errors | |
| 53 | ExpectedIntegerValue = 1001, | |
8b2be31edigeff10 years ago | 54 | |
c764d5e2digeff10 years ago | 55 | // Inter Process Communication errors |
| 56 | ErrorWhileProcessingMessageInIPMSServer = 901, | |
17161993Meena Kunnathur Balakrishnan10 years ago | 57 | } |