All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.sdk.iot.device.exceptions.ThrottledException Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
/*
 *  Copyright (c) Microsoft. All rights reserved.
 *  Licensed under the MIT license. See LICENSE file in the project root for full license information.
 */

package com.microsoft.azure.sdk.iot.device.exceptions;

import com.microsoft.azure.sdk.iot.device.IotHubStatusCode;

public class ThrottledException extends IotHubServiceException
{
    public ThrottledException()
    {
        super();
        this.isRetryable = true;
    }

    public ThrottledException(String message)
    {
        super(message);
        this.isRetryable = true;
    }

    public ThrottledException(String message, Throwable cause)
    {
        super(message, cause);
        this.isRetryable = true;
    }

    public ThrottledException(Throwable cause)
    {
        super(cause);
        this.isRetryable = true;
    }

    @Override
    public IotHubStatusCode getStatusCode()
    {
        return IotHubStatusCode.THROTTLED;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy