Skip to content

Commit

Permalink
Updating exception details for IotHubThrottledException
Browse files Browse the repository at this point in the history
  • Loading branch information
vinagesh committed Jul 12, 2021
1 parent 68d1fc8 commit 985b242
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
namespace Microsoft.Azure.Devices.Client.Exceptions
{
/// <summary>
/// The exception that is thrown when the service requires exponential back-off because it has exceeded the maximum number of allowed active requests.
/// This exception is thrown when the requests to the IoT hub exceed the limits based on the tier of the hub.
/// Retrying with exponential back-off could resolve this error.
/// </summary>
/// <remarks>
/// For information on the IoT hub quotas and throttling, see <see href="https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-quotas-throttling"/>.
/// </remarks>
[Serializable]
public sealed class IotHubThrottledException : IotHubException
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@
namespace Microsoft.Azure.Devices.Common.Exceptions
{
/// <summary>
/// The exception that is thrown when the rate of incoming requests exceeds the throttling limit set by IoT Hub.
/// This exception is thrown when the requests to the IoT hub exceed the limits based on the tier of the hub.
/// Retrying with exponential back-off could resolve this error.
/// </summary>
/// <remarks>
/// For information on the IoT hub quotas and throttling, see <see href="https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-quotas-throttling"/>.
/// </remarks>
[Serializable]
public sealed class IotHubThrottledException : IotHubException
{
Expand Down

0 comments on commit 985b242

Please sign in to comment.