com.microsoft.azure.sdk.iot.service.exceptions.IotHubMessageTooLargeException Maven / Gradle / Ivy
/*
* 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.service.exceptions;
/**
* Create iot hub Message too large exception
*/
public class IotHubMessageTooLargeException extends IotHubException
{
public IotHubMessageTooLargeException()
{
this(null);
}
public IotHubMessageTooLargeException(String message)
{
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy