com.ibm.as400.access.list
Class OpenListException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.as400.access.list.OpenListException
-
- All Implemented Interfaces:
- java.io.Serializable
public class OpenListException extends java.lang.Exception
Represents an exception that indicates an error has occurred processing an Open List API call on the system.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description static int
LIST_INFO_NOT_VALID
Error indicating that the list information did not exist or there was not enough list information returned to determine the list status.static int
LIST_STATUS_BUILDING
Status indicating that the list is in the process of being built.static int
LIST_STATUS_ERROR
Status indicating an error occurred when building the list.static int
LIST_STATUS_FULL
Status indicating there is too much data to be returned.static int
LIST_STATUS_PENDING
Status indicating that the building of the list is pending.static int
LIST_STATUS_PRIMED
Status indicating the list is primed and ready to be built.
-
Method Summary
Methods Modifier and Type Method and Description int
getStatus()
Returns the list status indicator for the Open List API call that generated this exception, or the error code.
-
-
-
Field Detail
-
LIST_INFO_NOT_VALID
public static final int LIST_INFO_NOT_VALID
Error indicating that the list information did not exist or there was not enough list information returned to determine the list status.- See Also:
- Constant Field Values
-
LIST_STATUS_PENDING
public static final int LIST_STATUS_PENDING
Status indicating that the building of the list is pending.- See Also:
- Constant Field Values
-
LIST_STATUS_BUILDING
public static final int LIST_STATUS_BUILDING
Status indicating that the list is in the process of being built.- See Also:
- Constant Field Values
-
LIST_STATUS_ERROR
public static final int LIST_STATUS_ERROR
Status indicating an error occurred when building the list.- See Also:
- Constant Field Values
-
LIST_STATUS_PRIMED
public static final int LIST_STATUS_PRIMED
Status indicating the list is primed and ready to be built.- See Also:
- Constant Field Values
-
LIST_STATUS_FULL
public static final int LIST_STATUS_FULL
Status indicating there is too much data to be returned.- See Also:
- Constant Field Values
-
-