mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 22:31:42 +00:00
12 lines
615 B
C#
12 lines
615 B
C#
namespace SteamLib.Exceptions;
|
|
public class SessionExpiredException : SessionInvalidException
|
|
{
|
|
public const string SESSION_EXPIRED_MSG = "Session expired and won't longer work. You must login to get new session";
|
|
public SessionExpiredException() { }
|
|
public SessionExpiredException(string message) : base(message) { }
|
|
public SessionExpiredException(string message, Exception inner) : base(message, inner) { }
|
|
protected SessionExpiredException(
|
|
System.Runtime.Serialization.SerializationInfo info,
|
|
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
|
|
}
|