mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-08-04 18:43:26 +00:00
19 lines
553 B
C#
19 lines
553 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)
|
|
{
|
|
}
|
|
} |