com.ibm.cics.server
Class InvalidUserIdException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.cics.server.CicsException
-
- com.ibm.cics.server.CicsConditionException
-
- com.ibm.cics.server.CicsResponseConditionException
-
- com.ibm.cics.server.InvalidUserIdException
-
- All Implemented Interfaces:
- java.io.Serializable
public class InvalidUserIdException extends CicsResponseConditionException
Represents the CICS USERIDERR condition.- See Also:
- Serialized Form
- Since CICS TS version:
- 1.3
- Since package version:
- 1.0.0
-
-
Constructor Summary
Constructors Constructor and Description InvalidUserIdException(java.lang.String message, int resp2, byte[] responseCode, java.lang.Throwable cause)
Constructor to be used when an USERIDERR is detected in Java code and a useful message can be supplied.
-
Method Summary
-
Methods inherited from class com.ibm.cics.server.CicsResponseConditionException
getResponseCode
-
Methods inherited from class com.ibm.cics.server.CicsConditionException
getMessage, getRESP, getRESP2
-
Methods inherited from class com.ibm.cics.server.CicsException
setRootCause
-
-
-
-
Constructor Detail
-
InvalidUserIdException
public InvalidUserIdException(java.lang.String message, int resp2, byte[] responseCode, java.lang.Throwable cause)
Constructor to be used when an USERIDERR is detected in Java code and a useful message can be supplied.- Parameters:
message
- a description of the problemresp2
- the reason coderesponseCode
- a response code.cause
- the original cause of this exception.- Since CICS TS version:
- 6.1
- Since package version:
- 1.900.0
-
-