Neighbourhood.omg.lol/Models/API/OmgLolApiException.cs

12 lines
385 B
C#
Raw Normal View History

2024-07-16 02:15:56 +00:00
namespace Neighbourhood.omg.lol.Models {
public class OmgLolApiException<T> : Exception where T : IOmgLolResponseData {
public OmgLolResponse<T>? Response { get; set; }
public OmgLolApiException(OmgLolResponse<T>? response) : base(response?.Response?.Message) {
Response = response;
}
public OmgLolApiException(string? response) : base(response) { }
}
}