Files
Nebula-Auth/SteamLibForked/Exceptions/CantLoadConfirmationsException.cs
T
Давид Чернопятов acf187fc6b 1.5.3 progress.
- Fixed CantLoadConfirmationsException was intercepted by error monitor
- Added localization to CantLoadConfirmationsException in ErrorHandler
- Added Copy RCode button to the Link dialog
- Fixed tooltips were messed up on Trade/Market timer's buttons
2024-10-21 13:32:45 +03:00

20 lines
573 B
C#

namespace SteamLib.Exceptions;
[Serializable]
public class CantLoadConfirmationsException : Exception
{
public LoadConfirmationsError Error { get; init; }
public string? ErrorMessage { get; init; }
public string? ErrorDetails { get; init; }
public CantLoadConfirmationsException() { }
public CantLoadConfirmationsException(string message) : base(message) { }
public CantLoadConfirmationsException(string message, Exception inner) : base(message, inner) { }
}
public enum LoadConfirmationsError
{
Unknown,
TryAgainLater,
NotSetupToReceiveConfirmations
}