com.ibm.cics.server

Class CicsConditionException

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      java.lang.String getMessage()
      Get the Exception message including the RESP and RESP2 values
      int getRESP()
      Return the RESP value for the CICS Condition represented by the CicsConditionException.
      int getRESP2()
      Return the RESP2 value for the CICS Condition represented by the CicsConditionException.
      • 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
    • Method Detail

      • getRESP

        public int getRESP()
        Return the RESP value for the CICS Condition represented by the CicsConditionException.
        Returns:
        RESP value.
        Since CICS TS version:
        5.2
        Since package version:
        1.500
      • getRESP2

        public int getRESP2()
        Return the RESP2 value for the CICS Condition represented by the CicsConditionException.

        The RESP2 contains more detailed information that may help explain why a particular CicsConditionException occurred. This field contains meaningful values, as documented in the CICS APRM for each command to which it applies. For requests to remote files, RESP2 contains zeros.

        Returns:
        RESP2 value.
        Since CICS TS version:
        1.3
        Since package version:
        1.0
      • getMessage

        public java.lang.String getMessage()
        Get the Exception message including the RESP and RESP2 values
        Overrides:
        getMessage in class java.lang.Throwable
        Returns:
        String - the Exception message
        See Also:
        Throwable.getMessage()
        Since CICS TS version:
        5.2
        Since package version:
        1.100.0