mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-29 08:07:37 +00:00
21 lines
625 B
C#
21 lines
625 B
C#
namespace SteamLib.Exceptions.General;
|
|
|
|
public class UnsupportedResponseException : Exception
|
|
{
|
|
public string Response { get; }
|
|
|
|
public UnsupportedResponseException(string response) : base("Request failed with unsupported response")
|
|
{
|
|
Response = response;
|
|
}
|
|
|
|
public UnsupportedResponseException(string response, Exception? inner) : base("Request failed with unsupported response", inner)
|
|
{
|
|
Response = response;
|
|
}
|
|
|
|
public UnsupportedResponseException(string response, string? message, Exception? inner = null) : base(message, inner)
|
|
{
|
|
Response = response;
|
|
}
|
|
} |