mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 22:31:42 +00:00
13 lines
574 B
C#
13 lines
574 B
C#
namespace SteamLib.Exceptions;
|
|
|
|
public class SessionInvalidException : Exception
|
|
{
|
|
public const string SESSION_NULL_MSG = "Session was null. Before acting SteamClient must be logged in";
|
|
public SessionInvalidException() { }
|
|
public SessionInvalidException(string message) : base(message) { }
|
|
public SessionInvalidException(string message, Exception? inner) : base(message, inner) { }
|
|
protected SessionInvalidException(
|
|
System.Runtime.Serialization.SerializationInfo info,
|
|
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
|
|
}
|