public final class CallExceptionList extends Object
CallException.| Constructor and Description |
|---|
CallExceptionList()
Deprecated.
Constructs a new
CallExceptionList object. |
| Modifier and Type | Method and Description |
|---|---|
CallException |
get(int index)
Deprecated.
Retrieves a
CallException by index. |
CallException |
last()
Deprecated.
Retrieves the last (most recent)
CallException. |
int |
size()
Deprecated.
Counts the number of elements.
|
public CallExceptionList()
CallExceptionList object.public int size()
CallExceptions, always >= 0.public CallException get(int index) throws IndexOutOfBoundsException
CallException by index.index - the element index, must be >= 0 and < size().CallException element at the specified index, never
null.IndexOutOfBoundsException - if index < 0 || index >= size().public CallException last()
CallException.CallException element at the highest index, or
null if this list is empty.See http://www.xins.org/.