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.

123456789101112131415
  1. using System.Net;
  2. using System.Text.Json;
  3. namespace BlackRock.Reporting.API.Exceptions
  4. {
  5. public class Error
  6. {
  7. public string Title { get; set; }
  8. public HttpStatusCode StatusCode { get; set; }
  9. public override string ToString()
  10. {
  11. return JsonSerializer.Serialize(this);
  12. }
  13. }
  14. }