Link to home
Start Free TrialLog in
Avatar of coolgem
coolgem

asked on

How to resolve Unhandled exception type javax.mail.MessagingException?

How do I resolvethe MessagingException error for the program below  and at next to the last line"postEmailObject.postMail(recipients, subject, message, from);" is where I get a squigley line depicting an error.  In the Consle the the error reads java.lang.Error: Unresolved compilation problem:
      Unhandled exception type javax.mail.MessagingException

      at java.lang.reflect.Constructor.newInstance(Native Method)
      at xxx.xxx.xxx.xxx.TestMail.main(TestMail.java:24)(line 24  is different here because I excluded the package statement.  
Exception in thread "main"  
:
/**
 * @author tjw
 *
 * To change this generated comment edit the template variable "typecomment":
 * Window>Preferences>Java>Templates.
 * To enable and disable the creation of type comments go to
 * Window>Preferences>Java>Code Generation.
 */
public class TestMail {
      static String  setRay[]    = {"name@blah.com"};
      public static void main(String[] args) throws MessagingException {
            System.out.println("Begin TestSchedular");
      DocChangeChecker dockChg = new DocChangeChecker();
      String[] recipients =  setRay;
      String subject      = "Testing Batch Email frm a bat file";
      String message      = "Never fear Theodore is here";
      String from         = "name@blah.com";
      System.out.println("Past DocChangeChecker");
      //create the object first
      //then pass the arguments for the paramaters
      PostEmail postEmailObject = new PostEmail();
      postEmailObject.postMail(recipients, subject, message, from); //error here
        System.out.println("Past PostEmail");
      }
}
ASKER CERTIFIED SOLUTION
Avatar of KeithWatson
KeithWatson

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial