| | 1 | | // <auto-generated> |
| | 2 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 3 | | // Licensed under the MIT License. See License.txt in the project root for |
| | 4 | | // license information. |
| | 5 | | // |
| | 6 | | // Code generated by Microsoft (R) AutoRest Code Generator. |
| | 7 | | // Changes may cause incorrect behavior and will be lost if the code is |
| | 8 | | // regenerated. |
| | 9 | | // </auto-generated> |
| | 10 | |
|
| | 11 | | namespace Microsoft.Azure.ContainerRegistry.Models |
| | 12 | | { |
| | 13 | | using Microsoft.Rest; |
| | 14 | |
|
| | 15 | | /// <summary> |
| | 16 | | /// Exception thrown for an invalid response with AcrErrors information. |
| | 17 | | /// </summary> |
| | 18 | | public partial class AcrErrorsException : RestException |
| | 19 | | { |
| | 20 | | /// <summary> |
| | 21 | | /// Gets information about the associated HTTP request. |
| | 22 | | /// </summary> |
| 0 | 23 | | public HttpRequestMessageWrapper Request { get; set; } |
| | 24 | |
|
| | 25 | | /// <summary> |
| | 26 | | /// Gets information about the associated HTTP response. |
| | 27 | | /// </summary> |
| 0 | 28 | | public HttpResponseMessageWrapper Response { get; set; } |
| | 29 | |
|
| | 30 | | /// <summary> |
| | 31 | | /// Gets or sets the body object. |
| | 32 | | /// </summary> |
| 0 | 33 | | public AcrErrors Body { get; set; } |
| | 34 | |
|
| | 35 | | /// <summary> |
| | 36 | | /// Initializes a new instance of the AcrErrorsException class. |
| | 37 | | /// </summary> |
| 0 | 38 | | public AcrErrorsException() |
| | 39 | | { |
| 0 | 40 | | } |
| | 41 | |
|
| | 42 | | /// <summary> |
| | 43 | | /// Initializes a new instance of the AcrErrorsException class. |
| | 44 | | /// </summary> |
| | 45 | | /// <param name="message">The exception message.</param> |
| | 46 | | public AcrErrorsException(string message) |
| 2 | 47 | | : this(message, null) |
| | 48 | | { |
| 2 | 49 | | } |
| | 50 | |
|
| | 51 | | /// <summary> |
| | 52 | | /// Initializes a new instance of the AcrErrorsException class. |
| | 53 | | /// </summary> |
| | 54 | | /// <param name="message">The exception message.</param> |
| | 55 | | /// <param name="innerException">Inner exception.</param> |
| | 56 | | public AcrErrorsException(string message, System.Exception innerException) |
| 2 | 57 | | : base(message, innerException) |
| | 58 | | { |
| 2 | 59 | | } |
| | 60 | | } |
| | 61 | | } |