microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.6.8

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/common/error/internalErrorCode.ts

77lines · modeblame

17161993Meena Kunnathur Balakrishnan10 years ago1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for details.
3
4export enum InternalErrorCode {
5// Command Executor errors
898cb3c6Meena Kunnathur Balakrishnan10 years ago6CommandFailed = 101,
7CommandFailedWithErrorCode = 102,
8PackagerStartFailed = 103,
9FailedToRunOnAndroid = 104,
10FailedToRunOnIos = 105,
11FailedToStartPackager = 106,
12FailedToStopPackager = 107,
5e651f3edigeff10 years ago13PackagerRunningInDifferentPort = 108,
f2a58eefBret Johnson9 years ago14FailedToRestartPackager = 109,
1c32fe84Patricio Beltran9 years ago15FailedToStartExponentPackager = 110,
7893fb7eJimmy Thomson9 years ago16FailedToPublishToExpHost = 111,
17161993Meena Kunnathur Balakrishnan10 years ago17
0c0b4844max-mironov8 years ago18FailedToExecAppCenterLogin = 112,
19FailedToExecAppCenterLogout = 113,
20FailedToExecAppCenterWhoAmI = 114,
21FailedToExecAppCenterSetCurrentApp = 115,
22FailedToExecAppCenterGetCurrentApp = 116,
23FailedToExecAppCenterReleaseReact = 117,
24FailedToExecAppCenterSetCurrentDeployment = 118,
25FailedToExecAppCenterShowMenu = 119,
26FailedToExecAppCenterSwitchMandatoryPropForRelease = 120,
27FailedToExecAppCenterSetTargetBinaryVersionForRelease = 121,
28
17161993Meena Kunnathur Balakrishnan10 years ago29// Device Deployer errors
3c172a05Artem Egorov8 years ago30IOSDeployNotFound = 201,
17161993Meena Kunnathur Balakrishnan10 years ago31
32// Device Runner errors
33DeviceNotPluggedIn = 301,
34DeveloperDiskImgNotMountable = 302,
35UnableToLaunchApplication = 303,
36ApplicationLaunchTimedOut = 304,
37
38// iOS Platform errors
39IOSSimulatorNotLaunchable = 401,
40
41// Packager errors
42OpnPackagerLocationNotFound = 501,
43OpnPackagerNotFound = 502,
190e393cMeena Kunnathur Balakrishnan10 years ago44FailedToStopPackagerOnExit = 503,
17161993Meena Kunnathur Balakrishnan10 years ago45
46// React Native Project errors
47ProjectVersionNotParsable = 601,
48ProjectVersionUnsupported = 602,
190e393cMeena Kunnathur Balakrishnan10 years ago49ProjectVersionNotReadable = 603,
50
51// Miscellaneous errors
52TelemetryInitializationFailed = 701,
53ExtensionActivationFailed = 702,
54DebuggerStubLauncherFailed = 703,
55IntellisenseSetupFailed = 704,
56NodeDebuggerConfigurationFailed = 705,
57DebuggingFailed = 706,
2166bdabdigeff10 years ago58RNTempFolderDeletionFailed = 707,
18d8ad2adigeff10 years ago59DebuggingFailedInNodeWrapper = 708,
514df4f4Patricio Beltran10 years ago60PlatformNotSupported = 709,
61WorkspaceNotFound = 710,
1c32fe84Patricio Beltran9 years ago62ExpectedExponentTunnelPath = 711,
2166bdabdigeff10 years ago63
64// Activation errors
65CouldNotFindLocationOfNodeDebugger = 801,
df4bce40digeff10 years ago66
67// Validating user input errors
68ExpectedIntegerValue = 1001,
9e81e40fPatricio Beltran10 years ago69ExpectedStringValue = 1002,
70ExpectedBooleanValue = 1003,
71ExpectedArrayValue = 1004,
72ExpectedObjectValue = 1005,
8b2be31edigeff10 years ago73
c764d5e2digeff10 years ago74// Inter Process Communication errors
75ErrorWhileProcessingMessageInIPMSServer = 901,
27710197Vladimir Kotikov8 years ago76ErrorNoPipeFound = 902,
17161993Meena Kunnathur Balakrishnan10 years ago77}