Package com.ibm.cics.server
Class AbendCancelException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.ibm.cics.server.CicsRuntimeException
com.ibm.cics.server.AbendCancelException
- All Implemented Interfaces:
Serializable
Provides a Java exception that corresponds to a CICS ABEND CANCEL. As this class extends CicsRuntimeException it is an unchecked exception and therefore it does not have to be declared. It is only used to represent an ABEND CANCEL that has been issued by a program in another language or to support the Task.forceAbend() method.
- See Also:
- Since CICS TS version:
- 1.3
-
Constructor Summary
ConstructorsConstructorDescriptionAbendCancelException(String message, String abendCode, Throwable cause) Allows the creation of this exception with an abend code JCICS applications would not be expected to create such exceptions unless during unit testing. -
Method Summary
Methods inherited from class com.ibm.cics.server.CicsRuntimeException
setRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AbendCancelException
Allows the creation of this exception with an abend code JCICS applications would not be expected to create such exceptions unless during unit testing.- Parameters:
message- The exception message.abendCode- The abend code.cause- The original cause for the failure, or null if not known.- Since CICS TS version:
- 6.1
-
-
Method Details
-
getABCODE
Return the particular ABEND code associated with anAbendCancelException.- Returns:
- the string that corresponds to the ABCODE.
- Since CICS TS version:
- 1.3
-