mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-30 00:37:52 +00:00
32 lines
984 B
C#
32 lines
984 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SteamLib.Exceptions.Mobile;
|
|
|
|
[Serializable]
|
|
public class BadMobileCookiesException : Exception
|
|
{
|
|
//
|
|
// For guidelines regarding the creation of new exception types, see
|
|
// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconerrorraisinghandlingguidelines.asp
|
|
// and
|
|
// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp07192001.asp
|
|
//
|
|
|
|
public BadMobileCookiesException() : base("You are using deafult HttpClient without mobile specific cookies. Login can't be proceeded with these cookies")
|
|
{
|
|
}
|
|
|
|
public BadMobileCookiesException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public BadMobileCookiesException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
}
|
|
|
|
protected BadMobileCookiesException(
|
|
SerializationInfo info,
|
|
StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
} |