* @throws InvalidIndexException
* if {@code ((index < 0) || (index >= this.getNMessages())}
*/
public Message getMessage(int index) throws InvalidIndexException {
if ((index < 0) || (index >= this.messageList.size())) {
throw new InvalidIndexException(index) ;
}// if
return this.messageList.get(index) ;
}// getMessage(int)