package oracle.forms.fd;
/**
 * Exception for use in the JavaMail class when an error occurs in the
 * process of handling the resolution of email addresses or sending of the message
 *
 * @version 1.0
 * @date 06-December-2001
 * @author drmills
 */
 
public class SendMessageException extends Exception
{
  public SendMessageException(String msg)
  {
    super("SendMessage: " + msg);
  }

  public SendMessageException()
  {
    super();
  }
}