UnexpectedLengthException Class
- java.
lang. Object - java.
lang. Throwable - java.
lang. Exception - java.
lang. RuntimeException - java.
lang. IllegalStateException - com.
azure. core. exception. UnexpectedLengthException
- com.
- java.
- java.
- java.
- java.
public final class UnexpectedLengthException
extends IllegalStateException
The UnexpectedLengthException
represents an exception thrown when the specified input length doesn't match the actual data length.
This exception is typically thrown when the number of bytes read from an input source does not match the expected number of bytes. This could occur when reading data from a file or a network connection.
This class also provides methods to get the number of bytes read from the input and the number of bytes that were expected to be read from the input.
Constructor Summary
Constructor | Description |
---|---|
UnexpectedLengthException(String message, long bytesRead, long bytesExpected) |
Constructor of the Unexpected |
Method Summary
Modifier and Type | Method and Description |
---|---|
long |
getBytesExpected()
Gets the number of bytes that were expected to be read from the input. |
long |
getBytesRead()
Gets the number of bytes read from the input. |
Methods inherited from java.lang.Object
Methods inherited from java.lang.Throwable
Constructor Details
UnexpectedLengthException
public UnexpectedLengthException(String message, long bytesRead, long bytesExpected)
Constructor of the UnexpectedLengthException.
Parameters:
Method Details
getBytesExpected
public long getBytesExpected()
Gets the number of bytes that were expected to be read from the input.
Returns:
getBytesRead
public long getBytesRead()
Gets the number of bytes read from the input.
Returns:
Applies to
Azure SDK for Java