microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.5.1

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/common/error/internalErrorCode.ts

66lines · 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
18// Device Deployer errors
3c172a05Artem Egorov8 years ago19IOSDeployNotFound = 201,
17161993Meena Kunnathur Balakrishnan10 years ago20
21// Device Runner errors
22DeviceNotPluggedIn = 301,
23DeveloperDiskImgNotMountable = 302,
24UnableToLaunchApplication = 303,
25ApplicationLaunchTimedOut = 304,
26
27// iOS Platform errors
28IOSSimulatorNotLaunchable = 401,
29
30// Packager errors
31OpnPackagerLocationNotFound = 501,
32OpnPackagerNotFound = 502,
190e393cMeena Kunnathur Balakrishnan10 years ago33FailedToStopPackagerOnExit = 503,
17161993Meena Kunnathur Balakrishnan10 years ago34
35// React Native Project errors
36ProjectVersionNotParsable = 601,
37ProjectVersionUnsupported = 602,
190e393cMeena Kunnathur Balakrishnan10 years ago38ProjectVersionNotReadable = 603,
39
40// Miscellaneous errors
41TelemetryInitializationFailed = 701,
42ExtensionActivationFailed = 702,
43DebuggerStubLauncherFailed = 703,
44IntellisenseSetupFailed = 704,
45NodeDebuggerConfigurationFailed = 705,
46DebuggingFailed = 706,
2166bdabdigeff10 years ago47RNTempFolderDeletionFailed = 707,
18d8ad2adigeff10 years ago48DebuggingFailedInNodeWrapper = 708,
514df4f4Patricio Beltran10 years ago49PlatformNotSupported = 709,
50WorkspaceNotFound = 710,
1c32fe84Patricio Beltran9 years ago51ExpectedExponentTunnelPath = 711,
2166bdabdigeff10 years ago52
53// Activation errors
54CouldNotFindLocationOfNodeDebugger = 801,
df4bce40digeff10 years ago55
56// Validating user input errors
57ExpectedIntegerValue = 1001,
9e81e40fPatricio Beltran10 years ago58ExpectedStringValue = 1002,
59ExpectedBooleanValue = 1003,
60ExpectedArrayValue = 1004,
61ExpectedObjectValue = 1005,
8b2be31edigeff10 years ago62
c764d5e2digeff10 years ago63// Inter Process Communication errors
64ErrorWhileProcessingMessageInIPMSServer = 901,
27710197Vladimir Kotikov8 years ago65ErrorNoPipeFound = 902,
17161993Meena Kunnathur Balakrishnan10 years ago66}