Class ZOSAbendException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.compuware.api.topaz.TopazAPIRuntimeException
-
- com.compuware.api.topaz.hosts.zos.ZOSSystemException
-
- com.compuware.api.topaz.hosts.zos.ZOSAbendException
-
- All Implemented Interfaces:
Serializable
public class ZOSAbendException extends ZOSSystemException
ZOSAbendException
is an unchecked exception thrown when a z/OS system abend occurs while performing an action on a z/OS host.For a textual description of a z/OS abend, use
Throwable.getMessage()
orTopazAPIRuntimeException.getLocalizedMessage()
. For further details regarding a specific Compuware return/reason code, see the "Topaz Workbench Messages and Codes" section of the Topaz Workbench Installation Guide.- Since:
- 1.0.0
- Version:
- 2.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ZOSAbendException(String message, String localizedMessage, IZOSHost zosHost, int returnCode, String reasonCode)
Constructs a new ZOS abend exception with the specified detail messages, z/OS host, return code and reason code.ZOSAbendException(String message, String localizedMessage, Throwable cause, IZOSHost zosHost, int returnCode, String reasonCode)
Constructs a new ZOS abend exception with the specified detail messages, cause, z/OS host, return code and reason code.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAbendCode()
Returns the abend code.String
getAbendReasonCode()
Returns the reason code of the abend.-
Methods inherited from class com.compuware.api.topaz.hosts.zos.ZOSSystemException
getReasonCode, getReturnCode, getZOSHost
-
Methods inherited from class com.compuware.api.topaz.TopazAPIRuntimeException
getLocalizedMessage
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ZOSAbendException
public ZOSAbendException(String message, String localizedMessage, IZOSHost zosHost, int returnCode, String reasonCode)
Constructs a new ZOS abend exception with the specified detail messages, z/OS host, return code and reason code. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable)
.- Parameters:
message
- the non-localized detail message (which is saved for later retrieval by theThrowable.getMessage()
method).localizedMessage
- the localized description (which is saved for later retrieval by theTopazAPIRuntimeException.getLocalizedMessage()
method). (Anull
value is permitted, in which casegetLocalizedMessage()
will return the non-localized detail message.)zosHost
- the z/OS host associated with this exceptionreturnCode
- the Compuware return codereasonCode
- the Compuware reason code- Since:
- 1.0.0
-
ZOSAbendException
public ZOSAbendException(String message, String localizedMessage, Throwable cause, IZOSHost zosHost, int returnCode, String reasonCode)
Constructs a new ZOS abend exception with the specified detail messages, cause, z/OS host, return code and reason code.Note that the detail message associated with
cause
is not automatically incorporated in this exception's detail message.- Parameters:
message
- the non-localized detail message (which is saved for later retrieval by theThrowable.getMessage()
method).localizedMessage
- the localized description (which is saved for later retrieval by theTopazAPIRuntimeException.getLocalizedMessage()
method). (Anull
value is permitted, in which casegetLocalizedMessage()
will return the non-localized detail message.)cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)zosHost
- the z/OS host associated with this exceptionreturnCode
- the Compuware return codereasonCode
- the Compuware reason code- Since:
- 1.0.0
-
-