Skip to content

Commit

Permalink
Fix deprecation messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
David R. Williamson committed Jul 9, 2021
1 parent 7b0d837 commit c3fb400
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions iothub/service/src/Common/Exceptions/ErrorCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public enum ErrorCode
/// As this error is in the 4xx HTTP status code range, the service would have detected a problem with the blob container
/// URI, such as does not exist, insufficient permissions, or SAS token expiry exceeded.
/// </remarks>
[Obsolete("This error does not appear to be thrown by the service.")]
[Obsolete("This error does not appear to be returned by the service.")]
[EditorBrowsable(EditorBrowsableState.Never)]
BlobContainerValidationError = 400008,

Expand All @@ -47,8 +47,8 @@ public enum ErrorCode
/// As this error is in the 4xx HTTP status code range, the service would have detected a problem with the job
/// request or user input.
/// </remarks>
[Obsolete("This error does not appear to be thrown by the service.")]
[EditorBrowsable(EditorBrowsableState.Never)]
//[Obsolete("This error does not appear to be returned by the service.")]
//[EditorBrowsable(EditorBrowsableState.Never)]
BulkRegistryOperationFailure = 400013,

CannotRegisterModuleToModule = 400301,
Expand All @@ -75,7 +75,7 @@ public enum ErrorCode
/// <summary>
/// The IoT Hub has exceeded the available quota for active jobs.
/// </summary>
[Obsolete("This error does not appear to be thrown by the service, and would not apply to a device anyway.")]
[Obsolete("This error does not appear to be returned by the service.")]
[EditorBrowsable(EditorBrowsableState.Never)]
JobQuotaExceeded = 403003,

Expand Down

0 comments on commit c3fb400

Please sign in to comment.