com.ibm.as400.access
Class ConnectionDroppedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.ibm.as400.access.ConnectionDroppedException
-
- All Implemented Interfaces:
- ReturnCodeException, java.io.Serializable
public class ConnectionDroppedException extends java.io.IOException implements ReturnCodeException
The ConnectionDroppedException class represents an exception that indicates that the connection to the system was dropped unexpectedly.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description static int
COMMUNICATIONS_ERROR
The return code indicating that an error occurred in communications.static int
CONNECTION_DROPPED
The return code indicating that the connection was dropped unexpectedly.static int
CONNECTION_NOT_ACTIVE
The return code indicating that the connection is not active.static int
DISCONNECT_RECEIVED
The return code indicating that disconnect was received.
-
Method Summary
Methods Modifier and Type Method and Description int
getReturnCode()
Returns the return code associated with this exception.
-
-
-
Field Detail
-
COMMUNICATIONS_ERROR
public static final int COMMUNICATIONS_ERROR
The return code indicating that an error occurred in communications.- See Also:
- Constant Field Values
-
CONNECTION_DROPPED
public static final int CONNECTION_DROPPED
The return code indicating that the connection was dropped unexpectedly.- See Also:
- Constant Field Values
-
CONNECTION_NOT_ACTIVE
public static final int CONNECTION_NOT_ACTIVE
The return code indicating that the connection is not active.- See Also:
- Constant Field Values
-
DISCONNECT_RECEIVED
public static final int DISCONNECT_RECEIVED
The return code indicating that disconnect was received.- See Also:
- Constant Field Values
-
-
Method Detail
-
getReturnCode
public int getReturnCode()
Returns the return code associated with this exception.- Specified by:
getReturnCode
in interfaceReturnCodeException
- Returns:
- The return code.
-
-