namespace Neighbourhood.omg.lol.Models { public class OmgLolApiException : Exception where T : IOmgLolResponseData { public OmgLolResponse? Response { get; set; } public OmgLolApiException(OmgLolResponse? response) : base(response?.Response?.Message) { Response = response; } public OmgLolApiException(string? response) : base(response) { } } }