com.ibm.cics.server

Class AbendException

  • All Implemented Interfaces:
    java.io.Serializable


    public class AbendException
    extends CicsRuntimeException

    Class that provides a Java exception that corresponds to a CICS ABEND. As this class extends CicsRuntimeException it is an unchecked exception and therefore it does not have to be declared in all of the API methods.

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

      Constructors 
      Constructor and Description
      AbendException(java.lang.String message, java.lang.String abendCode, java.lang.Throwable cause)
      Allows the creation of this exception with an abend code JCICS applications are not expected to use this method unless the caller is unit test code.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      java.lang.String getABCODE()
      Return the particular ABEND code associated with an AbendException.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, 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

      • AbendException

        public AbendException(java.lang.String message,
                              java.lang.String abendCode,
                              java.lang.Throwable cause)
        Allows the creation of this exception with an abend code JCICS applications are not expected to use this method unless the caller is unit test code.
        Parameters:
        message - The exception message.
        abendCode - The abend code.
        cause - The original cause of the problem
        Since CICS TS version:
        6.1
        Since package version:
        1.900.0
    • Method Detail

      • getABCODE

        public java.lang.String getABCODE()
        Return the particular ABEND code associated with an AbendException.
        Returns:
        The string that corresponds to the ABCODE.
        Since CICS TS version:
        1.3
        Since package version:
        1.0.0