Package net.algart.arrays
Class DataBufferIndexOverflowException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.algart.arrays.DataBufferIndexOverflowException
- All Implemented Interfaces:
Serializable
Unchecked exception thrown by DataBuffer
methods from()
,
to()
and cnt()
, if the values, they should be returned
by these methods, are greater than Integer.MAX_VALUE.
- Author:
- Daniel Alievsky
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an instance of this class.DataBufferIndexOverflowException
(String message) Constructs an instance of this class with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DataBufferIndexOverflowException
public DataBufferIndexOverflowException()Constructs an instance of this class. -
DataBufferIndexOverflowException
Constructs an instance of this class with the specified detail message.- Parameters:
message
- the detail message.
-