Black Rock Reporting Azure Function
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HttpErrorStatusCodeException.cs 484B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Net;
  5. using System.Net.Http;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace ClockifyReport.Exception
  9. {
  10. public class HttpErrorStatusCodeException : HttpRequestException
  11. {
  12. public HttpErrorStatusCodeException(HttpStatusCode errorStatusCode)
  13. {
  14. ErrorStatusCode = errorStatusCode;
  15. }
  16. public HttpStatusCode ErrorStatusCode { get; set; }
  17. }
  18. }