microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
514df4f4ef8788dfab32c26fd9d9c889f50a55ed

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/common/error/internalErrorCode.ts

57lines · 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,
17161993Meena Kunnathur Balakrishnan10 years ago14
15// Device Deployer errors
16IDeviceInstallerNotFound = 201,
17
18// Device Runner errors
19DeviceNotPluggedIn = 301,
20DeveloperDiskImgNotMountable = 302,
21UnableToLaunchApplication = 303,
22ApplicationLaunchTimedOut = 304,
23
24// iOS Platform errors
25IOSSimulatorNotLaunchable = 401,
26
27// Packager errors
28OpnPackagerLocationNotFound = 501,
29OpnPackagerNotFound = 502,
190e393cMeena Kunnathur Balakrishnan10 years ago30FailedToStopPackagerOnExit = 503,
17161993Meena Kunnathur Balakrishnan10 years ago31
32// React Native Project errors
33ProjectVersionNotParsable = 601,
34ProjectVersionUnsupported = 602,
190e393cMeena Kunnathur Balakrishnan10 years ago35ProjectVersionNotReadable = 603,
36
37// Miscellaneous errors
38TelemetryInitializationFailed = 701,
39ExtensionActivationFailed = 702,
40DebuggerStubLauncherFailed = 703,
41IntellisenseSetupFailed = 704,
42NodeDebuggerConfigurationFailed = 705,
43DebuggingFailed = 706,
2166bdabdigeff10 years ago44RNTempFolderDeletionFailed = 707,
18d8ad2adigeff10 years ago45DebuggingFailedInNodeWrapper = 708,
514df4f4Patricio Beltran10 years ago46PlatformNotSupported = 709,
47WorkspaceNotFound = 710,
2166bdabdigeff10 years ago48
49// Activation errors
50CouldNotFindLocationOfNodeDebugger = 801,
df4bce40digeff10 years ago51
52// Validating user input errors
53ExpectedIntegerValue = 1001,
8b2be31edigeff10 years ago54
c764d5e2digeff10 years ago55// Inter Process Communication errors
56ErrorWhileProcessingMessageInIPMSServer = 901,
17161993Meena Kunnathur Balakrishnan10 years ago57}