Package plugins.Freetalk.exceptions

Examples of plugins.Freetalk.exceptions.MessageNotFetchedException


         * @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;
        }
View Full Code Here

TOP

Related Classes of plugins.Freetalk.exceptions.MessageNotFetchedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.