mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-08-05 11:03:27 +00:00
1e65cd4a06
NebulaAuth: - Added MAAC and PortableMaClient for multi-confirmations - Code clean-ups, removed unused classes, refactoring of old files - SteamLib updated - Localization and UI updates - Dependcies updated to the last version LegacyConverter: - Added mode to decrypt mafiles
25 lines
603 B
C#
25 lines
603 B
C#
using SteamLib.ProtoCore.Enums;
|
|
|
|
namespace SteamLib.ProtoCore.Exceptions;
|
|
|
|
[Serializable]
|
|
public class EResultException : Exception
|
|
{
|
|
public EResult Result { get; }
|
|
public EResultException() { }
|
|
public EResultException(EResult result) : base("EResult error: " + result)
|
|
{
|
|
Result = result;
|
|
}
|
|
|
|
public EResultException(string message, EResult result, Exception inner) : base(message, inner)
|
|
{
|
|
Result = result;
|
|
}
|
|
|
|
public EResultException(EResult result, Exception inner) : base("EResult error: " + result, inner)
|
|
{
|
|
Result = result;
|
|
}
|
|
}
|