mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 14:24:32 +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
14 lines
651 B
C#
14 lines
651 B
C#
namespace SteamLib.Exceptions;
|
|
|
|
|
|
/// <summary>
|
|
/// Unlike <see cref="SessionInvalidException"/>, this exception indicates a definite session expiration. Refreshing the JWT token will not help.
|
|
/// </summary>
|
|
public class SessionPermanentlyExpiredException : SessionInvalidException
|
|
{
|
|
public const string SESSION_EXPIRED_MSG = "Session expired and won't longer work. You must login to get new session";
|
|
public SessionPermanentlyExpiredException() { }
|
|
public SessionPermanentlyExpiredException(string message) : base(message) { }
|
|
public SessionPermanentlyExpiredException(string message, Exception inner) : base(message, inner) { }
|
|
}
|