Skip to content

Instantly share code, notes, and snippets.

View nesterenko-kv's full-sized avatar
🇺🇦
Glory to Ukraine!

Kostiantyn Nesterenko nesterenko-kv

🇺🇦
Glory to Ukraine!
View GitHub Profile
using System;
namespace Infrastructure.ApiClients.Http
{
public class HttpCallException : Exception
{
public HttpCallException(int? statusCode, string message) : base(message)
{
StatusCode = statusCode;
}