Skip to content

Commit

Permalink
[Error Codes] Updated QuotaExceededException (#2070)
Browse files Browse the repository at this point in the history
* Updated QuotaExceededException classes

* Update QuotaExceededException.cs

* Update QuotaExceededException.cs
  • Loading branch information
jamdavi committed Jul 9, 2021
1 parent 6320011 commit 4debaa1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@
namespace Microsoft.Azure.Devices.Client.Exceptions
{
/// <summary>
/// The exception that is thrown when an attempt to add a device fails because the maximum number of registered devices has been reached.
/// The exception that is thrown by the device client when the daily message quota for the IoT hub is exceeded.
/// </summary>
/// <remarks>
/// To resolve this exception please review the <see href="https://docs.microsoft.com/azure/iot-hub/iot-hub-troubleshoot-error-403002-iothubquotaexceeded">Troubleshoot Quota Exceeded</see> guide.
/// </remarks>
[Serializable]
public sealed class QuotaExceededException : IotHubException
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@
namespace Microsoft.Azure.Devices.Common.Exceptions
{
/// <summary>
/// The exception that is thrown when the allocated quota set by IoT Hub is exceeded.
/// The exception that is thrown by the service client when the daily message quota for the IoT hub is exceeded.
/// </summary>
/// <remarks>
/// To resolve this exception please review the <see href="https://docs.microsoft.com/azure/iot-hub/iot-hub-troubleshoot-error-403002-iothubquotaexceeded">Troubleshoot Quota Exceeded</see> guide.
/// </remarks>
[Serializable]
public sealed class QuotaExceededException : IotHubException
{
Expand Down

0 comments on commit 4debaa1

Please sign in to comment.