mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-08-04 10:40:23 +00:00
22 lines
499 B
C#
22 lines
499 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace SteamLib.ProtoCore.Exceptions;
|
|
|
|
[Serializable]
|
|
public class UnknownEResultException : Exception
|
|
{
|
|
public int EResult { get; }
|
|
public UnknownEResultException()
|
|
{}
|
|
|
|
public UnknownEResultException(int eResult) : base("Got unknown EResult: " + eResult)
|
|
{
|
|
EResult = eResult;
|
|
}
|
|
|
|
protected UnknownEResultException(
|
|
SerializationInfo info,
|
|
StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
} |