microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
f9e73a70f272ab038d0e02bb9aef6149dfe8ebb7

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/common/error/internalErrorCode.ts

74lines · 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
4b37483dmax-mironov8 years ago18FailedToExecAppCenterLogin = 112,
19FailedToExecAppCenterLogout = 113,
20FailedToExecAppCenterWhoAmI = 114,
640e6e98max-mironov8 years ago21FailedToExecAppCenterSetCurrentApp = 115,
6a465861max-mironov8 years ago22FailedToExecAppCenterGetCurrentApp = 116,
23FailedToExecAppCenterReleaseReact = 117,
4a66f08bmax-mironov8 years ago24FailedToExecAppCenterSetCurrentDeployment = 118,
bb45fbe6max-mironov8 years ago25
17161993Meena Kunnathur Balakrishnan10 years ago26// Device Deployer errors
3c172a05Artem Egorov8 years ago27IOSDeployNotFound = 201,
17161993Meena Kunnathur Balakrishnan10 years ago28
29// Device Runner errors
30DeviceNotPluggedIn = 301,
31DeveloperDiskImgNotMountable = 302,
32UnableToLaunchApplication = 303,
33ApplicationLaunchTimedOut = 304,
34
35// iOS Platform errors
36IOSSimulatorNotLaunchable = 401,
37
38// Packager errors
39OpnPackagerLocationNotFound = 501,
40OpnPackagerNotFound = 502,
190e393cMeena Kunnathur Balakrishnan10 years ago41FailedToStopPackagerOnExit = 503,
17161993Meena Kunnathur Balakrishnan10 years ago42
43// React Native Project errors
44ProjectVersionNotParsable = 601,
45ProjectVersionUnsupported = 602,
190e393cMeena Kunnathur Balakrishnan10 years ago46ProjectVersionNotReadable = 603,
47
48// Miscellaneous errors
49TelemetryInitializationFailed = 701,
50ExtensionActivationFailed = 702,
51DebuggerStubLauncherFailed = 703,
52IntellisenseSetupFailed = 704,
53NodeDebuggerConfigurationFailed = 705,
54DebuggingFailed = 706,
2166bdabdigeff10 years ago55RNTempFolderDeletionFailed = 707,
18d8ad2adigeff10 years ago56DebuggingFailedInNodeWrapper = 708,
514df4f4Patricio Beltran10 years ago57PlatformNotSupported = 709,
58WorkspaceNotFound = 710,
1c32fe84Patricio Beltran9 years ago59ExpectedExponentTunnelPath = 711,
2166bdabdigeff10 years ago60
61// Activation errors
62CouldNotFindLocationOfNodeDebugger = 801,
df4bce40digeff10 years ago63
64// Validating user input errors
65ExpectedIntegerValue = 1001,
9e81e40fPatricio Beltran10 years ago66ExpectedStringValue = 1002,
67ExpectedBooleanValue = 1003,
68ExpectedArrayValue = 1004,
69ExpectedObjectValue = 1005,
8b2be31edigeff10 years ago70
c764d5e2digeff10 years ago71// Inter Process Communication errors
72ErrorWhileProcessingMessageInIPMSServer = 901,
27710197Vladimir Kotikov8 years ago73ErrorNoPipeFound = 902,
17161993Meena Kunnathur Balakrishnan10 years ago74}