* @throws MessageNotFetchedException If the message belonging to this reference was not fetched yet.
*/
public final Message getMessage() throws MessageNotFetchedException {
checkedActivate(1);
if(mMessage == null)
throw new MessageNotFetchedException(mMessageID);
mMessage.initializeTransient(mFreetalk);
return mMessage;
}