mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 06:14:31 +00:00
acf187fc6b
- 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
20 lines
573 B
C#
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
|
|
} |