microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
190e393cdfd678505e325972de68688a94051a36

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/common/error/InternalErrorCode.ts

43lines · 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
6CommandExecutionFailed = 101,
7PackagerStartFailed = 102,
190e393cMeena Kunnathur Balakrishnan10 years ago8FailedToRunOnAndroid = 103,
9FailedToRunOnIos = 104,
10FailedToStartPackager = 105,
11FailedToStopPackager = 106,
17161993Meena Kunnathur Balakrishnan10 years ago12
13// Device Deployer errors
14IDeviceInstallerNotFound = 201,
15
16// Device Runner errors
17DeviceNotPluggedIn = 301,
18DeveloperDiskImgNotMountable = 302,
19UnableToLaunchApplication = 303,
20ApplicationLaunchTimedOut = 304,
21
22// iOS Platform errors
23IOSSimulatorNotLaunchable = 401,
24
25// Packager errors
26OpnPackagerLocationNotFound = 501,
27OpnPackagerNotFound = 502,
190e393cMeena Kunnathur Balakrishnan10 years ago28FailedToStopPackagerOnExit = 503,
17161993Meena Kunnathur Balakrishnan10 years ago29
30// React Native Project errors
31ProjectVersionNotParsable = 601,
32ProjectVersionUnsupported = 602,
190e393cMeena Kunnathur Balakrishnan10 years ago33ProjectVersionNotReadable = 603,
34
35// Miscellaneous errors
36TelemetryInitializationFailed = 701,
37ExtensionActivationFailed = 702,
38DebuggerStubLauncherFailed = 703,
39IntellisenseSetupFailed = 704,
40NodeDebuggerConfigurationFailed = 705,
41DebuggingFailed = 706,
42RNTempFolderDeletionFailed = 707
17161993Meena Kunnathur Balakrishnan10 years ago43}