// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
export enum InternalErrorCode {
// Command Executor errors
CommandFailed = 101,
CommandFailedWithErrorCode = 102,
PackagerStartFailed = 103,
FailedToRunOnAndroid = 104,
FailedToRunOnIos = 105,
FailedToStartPackager = 106,
FailedToStopPackager = 107,
// Device Deployer errors
IDeviceInstallerNotFound = 201,
// Device Runner errors
DeviceNotPluggedIn = 301,
DeveloperDiskImgNotMountable = 302,
UnableToLaunchApplication = 303,
ApplicationLaunchTimedOut = 304,
// iOS Platform errors
IOSSimulatorNotLaunchable = 401,
// Packager errors
OpnPackagerLocationNotFound = 501,
OpnPackagerNotFound = 502,
FailedToStopPackagerOnExit = 503,
// React Native Project errors
ProjectVersionNotParsable = 601,
ProjectVersionUnsupported = 602,
ProjectVersionNotReadable = 603,
// Miscellaneous errors
TelemetryInitializationFailed = 701,
ExtensionActivationFailed = 702,
DebuggerStubLauncherFailed = 703,
IntellisenseSetupFailed = 704,
NodeDebuggerConfigurationFailed = 705,
DebuggingFailed = 706,
RNTempFolderDeletionFailed = 707,
// Activation errors
CouldNotFindLocationOfNodeDebugger = 801,
}microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
src/common/error/internalErrorCode.ts
47lines · modepreview