Files
Nebula-Auth/SteamLibForked/Exceptions/SessionInvalidException.cs
T
Давид Чернопятов 1e65cd4a06 1.5.3 progress. Added multi-confirmation and code refactorings
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
2024-10-16 16:31:53 +03:00

11 lines
527 B
C#

namespace SteamLib.Exceptions;
public class SessionInvalidException : Exception
{
public const string SESSION_NULL_MSG = "Session is null. SteamClient must be logged in before proceeding.";
public const string GOT_401_MSG = "Steam indicates the session is invalid. Received a 401 Unauthorized response.";
public SessionInvalidException() { }
public SessionInvalidException(string message) : base(message) { }
public SessionInvalidException(string message, Exception? inner) : base(message, inner) { }
}