microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/common/error/internalErrorCode.ts
66lines · 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, |
f2a58eefBret Johnson9 years ago | 14 | FailedToRestartPackager = 109, |
4787ec09Artem Egorov7 years ago | 15 | FailedToRunExponent = 110, |
7893fb7eJimmy Thomson9 years ago | 16 | FailedToPublishToExpHost = 111, |
17161993Meena Kunnathur Balakrishnan10 years ago | 17 | |
| 18 | // Device Deployer errors | |
3c172a05Artem Egorov8 years ago | 19 | IOSDeployNotFound = 201, |
17161993Meena Kunnathur Balakrishnan10 years ago | 20 | |
| 21 | // Device Runner errors | |
| 22 | DeviceNotPluggedIn = 301, | |
| 23 | DeveloperDiskImgNotMountable = 302, | |
| 24 | UnableToLaunchApplication = 303, | |
| 25 | ApplicationLaunchTimedOut = 304, | |
| 26 | | |
| 27 | // iOS Platform errors | |
| 28 | IOSSimulatorNotLaunchable = 401, | |
| 29 | | |
| 30 | // Packager errors | |
| 31 | OpnPackagerLocationNotFound = 501, | |
| 32 | OpnPackagerNotFound = 502, | |
190e393cMeena Kunnathur Balakrishnan10 years ago | 33 | FailedToStopPackagerOnExit = 503, |
17161993Meena Kunnathur Balakrishnan10 years ago | 34 | |
| 35 | // React Native Project errors | |
| 36 | ProjectVersionNotParsable = 601, | |
| 37 | ProjectVersionUnsupported = 602, | |
190e393cMeena Kunnathur Balakrishnan10 years ago | 38 | ProjectVersionNotReadable = 603, |
| 39 | | |
| 40 | // Miscellaneous errors | |
| 41 | TelemetryInitializationFailed = 701, | |
| 42 | ExtensionActivationFailed = 702, | |
| 43 | DebuggerStubLauncherFailed = 703, | |
| 44 | IntellisenseSetupFailed = 704, | |
| 45 | NodeDebuggerConfigurationFailed = 705, | |
| 46 | DebuggingFailed = 706, | |
2166bdabdigeff10 years ago | 47 | RNTempFolderDeletionFailed = 707, |
18d8ad2adigeff10 years ago | 48 | DebuggingFailedInNodeWrapper = 708, |
514df4f4Patricio Beltran10 years ago | 49 | PlatformNotSupported = 709, |
| 50 | WorkspaceNotFound = 710, | |
1c32fe84Patricio Beltran9 years ago | 51 | ExpectedExponentTunnelPath = 711, |
2166bdabdigeff10 years ago | 52 | |
| 53 | // Activation errors | |
| 54 | CouldNotFindLocationOfNodeDebugger = 801, | |
df4bce40digeff10 years ago | 55 | |
| 56 | // Validating user input errors | |
| 57 | ExpectedIntegerValue = 1001, | |
9e81e40fPatricio Beltran10 years ago | 58 | ExpectedStringValue = 1002, |
| 59 | ExpectedBooleanValue = 1003, | |
| 60 | ExpectedArrayValue = 1004, | |
| 61 | ExpectedObjectValue = 1005, | |
8b2be31edigeff10 years ago | 62 | |
c764d5e2digeff10 years ago | 63 | // Inter Process Communication errors |
| 64 | ErrorWhileProcessingMessageInIPMSServer = 901, | |
27710197Vladimir Kotikov8 years ago | 65 | ErrorNoPipeFound = 902, |
17161993Meena Kunnathur Balakrishnan10 years ago | 66 | } |