mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
27 lines
715 B
C#
27 lines
715 B
C#
using System;
|
|
using System.Net.Http;
|
|
using Wabbajack.Common.Serialization.Json;
|
|
|
|
namespace Wabbajack.Common.Exceptions
|
|
{
|
|
[JsonName("HttpException")]
|
|
public class HttpException : Exception
|
|
{
|
|
public string Reason { get; set; }
|
|
public int Code { get; set; }
|
|
|
|
public HttpException(int code, string reason) : base($"Http Error {code} - {reason}")
|
|
{
|
|
Code = code;
|
|
Reason = reason;
|
|
}
|
|
|
|
public HttpException(HttpResponseMessage response) : base(
|
|
$"Http Error {response.StatusCode} - {response.ReasonPhrase}")
|
|
{
|
|
Code = (int)response.StatusCode;
|
|
Reason = response.ReasonPhrase;
|
|
}
|
|
}
|
|
}
|