namespace Ryujinx.Ui.Common
{
/// <summary>
/// Represent a common error that could be reported to the user by the emulator.
/// </summary>
public enum UserError
/// No error to report.
Success = 0x0,
/// No keys are present.
NoKeys = 0x1,
/// No firmware is installed.
NoFirmware = 0x2,
/// Firmware parsing failed.
/// <remarks>Most likely related to keys.</remarks>
FirmwareParsingFailed = 0x3,
/// No application was found at the given path.
ApplicationNotFound = 0x4,
/// An unknown error.
Unknown = 0xDEAD
}