public interface IApiException { ExceptionType Type { get; set; } HttpStatusCode HttpStatus { get; set; } string Code { get; } List<Error> Errors { get; set; } }