All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.as400.access.InternalErrorException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----com.ibm.as400.access.InternalErrorException

public class InternalErrorException
extends RuntimeException
implements ReturnCodeException
The InternalErrorException class represents an exception that indicates that an internal error has occurred. Instances of this class represent problems in the supplied code. Contact your service representative to report the problem.


Variable Index

 o DATA_STREAM_LEVEL_NOT_VALID
The return code indicating that the server job cannot support the level of data streams that the client is using.
 o DATA_STREAM_UNKNOWN
The return code indicating that the data stream received from the server job was not of the type or format expected.
 o PASSWORD_IMPROPERLY_ENCRYPTED
The return code indicating that the password has not been encrypted properly (pre-V2R2 encryption may have been used).
 o PROTOCOL_ERROR
The return code indicating that a protocol error occurred while communicating with the server.
 o SECURITY_INVALID_STATE
The return code indicating that the security manager is in a state that is not valid.
 o SYNTAX_ERROR
The return code indicating that the server job received a data stream that had data or a format that was not valid.
 o UNEXPECTED_EXCEPTION
The return code indicating that an unexpected exception was received.
 o UNEXPECTED_RETURN_CODE
The return code indicating that an unexpected return code was received.
 o UNKNOWN
The return code indicating that the exact cause of the failure is not known.
 o VRM_NOT_VALID
The return code indicating that the server job cannot support this version of the client.

Constructor Index

 o InternalErrorException(int)
Constructs an InternalErrorException object.

Method Index

 o getReturnCode()
Returns the return code associated with this exception.

Variables

 o DATA_STREAM_LEVEL_NOT_VALID
 public static final int DATA_STREAM_LEVEL_NOT_VALID
The return code indicating that the server job cannot support the level of data streams that the client is using.

 o DATA_STREAM_UNKNOWN
 public static final int DATA_STREAM_UNKNOWN
The return code indicating that the data stream received from the server job was not of the type or format expected.

 o PASSWORD_IMPROPERLY_ENCRYPTED
 public static final int PASSWORD_IMPROPERLY_ENCRYPTED
The return code indicating that the password has not been encrypted properly (pre-V2R2 encryption may have been used).

 o PROTOCOL_ERROR
 public static final int PROTOCOL_ERROR
The return code indicating that a protocol error occurred while communicating with the server.

 o SYNTAX_ERROR
 public static final int SYNTAX_ERROR
The return code indicating that the server job received a data stream that had data or a format that was not valid.

 o UNKNOWN
 public static final int UNKNOWN
The return code indicating that the exact cause of the failure is not known. The detailed message may contain additional information.

 o VRM_NOT_VALID
 public static final int VRM_NOT_VALID
The return code indicating that the server job cannot support this version of the client.

 o SECURITY_INVALID_STATE
 public static final int SECURITY_INVALID_STATE
The return code indicating that the security manager is in a state that is not valid.

 o UNEXPECTED_RETURN_CODE
 public static final int UNEXPECTED_RETURN_CODE
The return code indicating that an unexpected return code was received.

 o UNEXPECTED_EXCEPTION
 public static final int UNEXPECTED_EXCEPTION
The return code indicating that an unexpected exception was received.

Constructors

 o InternalErrorException
 public InternalErrorException(int returnCode)
Constructs an InternalErrorException object. It indicates that an internal error has occurred.

Parameters:
returnCode - The return code which identifies the message to be returned.

Methods

 o getReturnCode
 public int getReturnCode()
Returns the return code associated with this exception.

Returns:
The return code.

All Packages  Class Hierarchy  This Package  Previous  Next  Index