-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHttpException.cs
More file actions
34 lines (29 loc) · 926 Bytes
/
HttpException.cs
File metadata and controls
34 lines (29 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
namespace PCPPlugins.BusinessLayer.Http
{
using System;
///// <summary>
/// Http Exception
/// </summary>
public class HttpException : Exception
{
public HttpException() { }
public HttpException(string message) : base(message) { }
public HttpException(string message, Exception innerException) : base(message, innerException) { }
/// <summary>
/// Request Uri
/// </summary>
public string RequestUri { get; set; }
/// <summary>
/// Request Body
/// </summary>
public string RequestBody { get; set; }
/// <summary>
/// Response Body
/// </summary>
public string ResponseBody { get; set; }
/// <summary>
/// Expected Response Type Name
/// </summary>
public string ExpectedResponseTypeName { get; set; }
}
}