-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
ErrorResponseException.cs
58 lines (51 loc) · 1.8 KB
/
ErrorResponseException.cs
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// <auto-generated>
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
// </auto-generated>
namespace Microsoft.Azure.OperationalInsights.Models
{
using Microsoft.Rest;
/// <summary>
/// Exception thrown for an invalid response with ErrorResponse
/// information.
/// </summary>
public partial class ErrorResponseException : RestException
{
/// <summary>
/// Gets information about the associated HTTP request.
/// </summary>
public HttpRequestMessageWrapper Request { get; set; }
/// <summary>
/// Gets information about the associated HTTP response.
/// </summary>
public HttpResponseMessageWrapper Response { get; set; }
/// <summary>
/// Gets or sets the body object.
/// </summary>
public ErrorResponse Body { get; set; }
/// <summary>
/// Initializes a new instance of the ErrorResponseException class.
/// </summary>
public ErrorResponseException()
{
}
/// <summary>
/// Initializes a new instance of the ErrorResponseException class.
/// </summary>
/// <param name="message">The exception message.</param>
public ErrorResponseException(string message)
: this(message, null)
{
}
/// <summary>
/// Initializes a new instance of the ErrorResponseException class.
/// </summary>
/// <param name="message">The exception message.</param>
/// <param name="innerException">Inner exception.</param>
public ErrorResponseException(string message, System.Exception innerException)
: base(message, innerException)
{
}
}
}