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