com.azure.core.exception.UnexpectedLengthException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-core Show documentation
Show all versions of azure-core Show documentation
This package contains core types for Azure Java clients.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.core.exception;
/**
* This exception class represents an error when the specified input length doesn't match the data length.
*/
public final class UnexpectedLengthException extends IllegalStateException {
/**
* Number of bytes read from the input.
*/
private final long bytesRead;
/**
* Number of bytes that were expected to be read from the input.
*/
private final long bytesExpected;
/**
* Constructor of the UnexpectedLengthException.
* @param message The message for the exception.
* @param bytesRead The number of bytes read from resource.
* @param bytesExpected The number of bytes expected from the receiver.
*/
public UnexpectedLengthException(String message, long bytesRead, long bytesExpected) {
super(message);
this.bytesRead = bytesRead;
this.bytesExpected = bytesExpected;
}
/**
* Gets the number of bytes read from the input.
*
* @return the number of bytes read from the input
*/
public long getBytesRead() {
return this.bytesRead;
}
/**
* Gets the number of bytes that were expected to be read from the input.
*
* @return the number of bytes that were expected to be read from the input
*/
public long getBytesExpected() {
return this.bytesExpected;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy