HttpResponseException.cs 147 B

123456
  1. using System;
  2. public class HttpResponseException : Exception {
  3. public int Status { get; set; } = 500;
  4. public object Value { get; set; }
  5. }