microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/common/error/InternalErrorCode.ts
43lines · 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 | |
| 6 | CommandExecutionFailed = 101, | |
| 7 | PackagerStartFailed = 102, | |
190e393cMeena Kunnathur Balakrishnan10 years ago | 8 | FailedToRunOnAndroid = 103, |
| 9 | FailedToRunOnIos = 104, | |
| 10 | FailedToStartPackager = 105, | |
| 11 | FailedToStopPackager = 106, | |
17161993Meena Kunnathur Balakrishnan10 years ago | 12 | |
| 13 | // Device Deployer errors | |
| 14 | IDeviceInstallerNotFound = 201, | |
| 15 | | |
| 16 | // Device Runner errors | |
| 17 | DeviceNotPluggedIn = 301, | |
| 18 | DeveloperDiskImgNotMountable = 302, | |
| 19 | UnableToLaunchApplication = 303, | |
| 20 | ApplicationLaunchTimedOut = 304, | |
| 21 | | |
| 22 | // iOS Platform errors | |
| 23 | IOSSimulatorNotLaunchable = 401, | |
| 24 | | |
| 25 | // Packager errors | |
| 26 | OpnPackagerLocationNotFound = 501, | |
| 27 | OpnPackagerNotFound = 502, | |
190e393cMeena Kunnathur Balakrishnan10 years ago | 28 | FailedToStopPackagerOnExit = 503, |
17161993Meena Kunnathur Balakrishnan10 years ago | 29 | |
| 30 | // React Native Project errors | |
| 31 | ProjectVersionNotParsable = 601, | |
| 32 | ProjectVersionUnsupported = 602, | |
190e393cMeena Kunnathur Balakrishnan10 years ago | 33 | ProjectVersionNotReadable = 603, |
| 34 | | |
| 35 | // Miscellaneous errors | |
| 36 | TelemetryInitializationFailed = 701, | |
| 37 | ExtensionActivationFailed = 702, | |
| 38 | DebuggerStubLauncherFailed = 703, | |
| 39 | IntellisenseSetupFailed = 704, | |
| 40 | NodeDebuggerConfigurationFailed = 705, | |
| 41 | DebuggingFailed = 706, | |
| 42 | RNTempFolderDeletionFailed = 707 | |
17161993Meena Kunnathur Balakrishnan10 years ago | 43 | } |