microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
df86c7ac7699cc6af287837669ccfe1f52e756f9

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/common/error/internalErrorCode.ts

47lines · 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,
17161993Meena Kunnathur Balakrishnan10 years ago13
14// Device Deployer errors
15IDeviceInstallerNotFound = 201,
16
17// Device Runner errors
18DeviceNotPluggedIn = 301,
19DeveloperDiskImgNotMountable = 302,
20UnableToLaunchApplication = 303,
21ApplicationLaunchTimedOut = 304,
22
23// iOS Platform errors
24IOSSimulatorNotLaunchable = 401,
25
26// Packager errors
27OpnPackagerLocationNotFound = 501,
28OpnPackagerNotFound = 502,
190e393cMeena Kunnathur Balakrishnan10 years ago29FailedToStopPackagerOnExit = 503,
17161993Meena Kunnathur Balakrishnan10 years ago30
31// React Native Project errors
32ProjectVersionNotParsable = 601,
33ProjectVersionUnsupported = 602,
190e393cMeena Kunnathur Balakrishnan10 years ago34ProjectVersionNotReadable = 603,
35
36// Miscellaneous errors
37TelemetryInitializationFailed = 701,
38ExtensionActivationFailed = 702,
39DebuggerStubLauncherFailed = 703,
40IntellisenseSetupFailed = 704,
41NodeDebuggerConfigurationFailed = 705,
42DebuggingFailed = 706,
2166bdabdigeff10 years ago43RNTempFolderDeletionFailed = 707,
44
45// Activation errors
46CouldNotFindLocationOfNodeDebugger = 801,
17161993Meena Kunnathur Balakrishnan10 years ago47}