/** *A stub class to send a mail message through the connection using SMTP * *@Exception MessageException *when the message is not a valid mail message * *@author Dan Hawando *@author Ben Kaiser *@author Josh Vickery *@version 1.1 of October 1999 */ public class SendMailStub implements SendMail { public void sendMessage(String MessageName) throws MessageException { //STUB } }//SendMailStub(String)