com.ibm.cics.server

Class EndOfDataException

  • All Implemented Interfaces:
    java.io.Serializable


    public class EndOfDataException
    extends CicsResponseConditionException

    Class that represents the CICS ENDDATA condition.

    See Also:
    Serialized Form
    Since CICS TS version:
    1.3
    Since package version:
    1.0.0
    • Constructor Summary

      Constructors 
      Constructor and Description
      EndOfDataException(java.lang.String message, int resp2, byte[] responseCode, java.lang.Throwable cause)
      Constructor to be used when ENDDATA is returned from an API function and no useful message can be supplied but we do have an original cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • EndOfDataException

        public EndOfDataException(java.lang.String message,
                                  int resp2,
                                  byte[] responseCode,
                                  java.lang.Throwable cause)
        Constructor to be used when ENDDATA is returned from an API function and no useful message can be supplied but we do have an original cause. CICS applications are not expected to use this method unless they calling from unit test code.
        Parameters:
        cause - The original reason for the failure
        message - The textual error associated with this message.
        resp2 - A secondary identififier associated with this message.
        responseCode - The response code returned is the value of EIBRCODE, a six byte field which contains the CICS response code returned after the function requested by the last CICS command to be issued by the task has been completed.
        Since CICS TS version:
        6.1
        Since package version:
        1.900.0