Class LogicalRecordLengthExceededException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.compuware.api.topaz.hostresources.zos.LogicalRecordLengthExceededException
-
- All Implemented Interfaces:
Serializable
public class LogicalRecordLengthExceededException extends IOException
LogicalRecordLengthExceededException
is a checked exception thrown when an attempt to write data to a dataset resource exceeds the dataset's logical record length.- Since:
- 1.1.0
- Version:
- 2.0.0
- See Also:
DataSetWriter.write
,MemberWriter.write
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LogicalRecordLengthExceededException(String message, char[] dataBuffer, int offset, int length)
Constructs a logical record length exceeded exception with the specified detail message, data buffer, offset, and length.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description char[]
getDataBuffer()
Returns the buffer of the write.int
getLength()
Returns the length of the writeint
getOffset()
Returns the offset of the write-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
LogicalRecordLengthExceededException
public LogicalRecordLengthExceededException(String message, char[] dataBuffer, int offset, int length)
Constructs a logical record length exceeded exception with the specified detail message, data buffer, offset, and length.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).dataBuffer
- the buffer of the writeoffset
- the offset of the writelength
- the length of the write- Since:
- 1.0.0
-
-