| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | namespace Azure.DigitalTwins.Core |
| | | 9 | | { |
| | | 10 | | /// <summary> A more specific error description than was provided by the containing error. </summary> |
| | | 11 | | internal partial class InnerError |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of InnerError. </summary> |
| | 0 | 14 | | internal InnerError() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of InnerError. </summary> |
| | | 19 | | /// <param name="code"> A more specific error code than was provided by the containing error. </param> |
| | | 20 | | /// <param name="innererror"> An object containing more specific information than the current object about the e |
| | 0 | 21 | | internal InnerError(string code, InnerError innererror) |
| | | 22 | | { |
| | 0 | 23 | | Code = code; |
| | 0 | 24 | | Innererror = innererror; |
| | 0 | 25 | | } |
| | | 26 | | |
| | | 27 | | /// <summary> A more specific error code than was provided by the containing error. </summary> |
| | 0 | 28 | | public string Code { get; } |
| | | 29 | | /// <summary> An object containing more specific information than the current object about the error. </summary> |
| | 0 | 30 | | public InnerError Innererror { get; } |
| | | 31 | | } |
| | | 32 | | } |