Hello, All these commits should be grouped and related to the bugzilla id we have.
Regards Philippe On Thursday, July 31, 2014, <[email protected]> wrote: > Author: sebb > Date: Thu Jul 31 12:58:10 2014 > New Revision: 1614878 > > URL: http://svn.apache.org/r1614878 > Log: > Use more specific Exception classes > > Modified: > > jmeter/trunk/src/protocol/mail/org/apache/jmeter/protocol/smtp/sampler/protocol/SendMailCommand.java > > Modified: > jmeter/trunk/src/protocol/mail/org/apache/jmeter/protocol/smtp/sampler/protocol/SendMailCommand.java > URL: > http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/mail/org/apache/jmeter/protocol/smtp/sampler/protocol/SendMailCommand.java?rev=1614878&r1=1614877&r2=1614878&view=diff > > ============================================================================== > --- > jmeter/trunk/src/protocol/mail/org/apache/jmeter/protocol/smtp/sampler/protocol/SendMailCommand.java > (original) > +++ > jmeter/trunk/src/protocol/mail/org/apache/jmeter/protocol/smtp/sampler/protocol/SendMailCommand.java > Thu Jul 31 12:58:10 2014 > @@ -261,7 +261,7 @@ public class SendMailCommand { > * Sends message to mailserver, waiting for delivery if using > synchronous mode. > * > * @param message > - * Message prior prepared by prepareMessage() > + * Message previously prepared by prepareMessage() > * @throws MessagingException > * @throws IOException > * @throws InterruptedException > @@ -298,9 +298,11 @@ public class SendMailCommand { > /** > * Processes prepareMessage() and execute() > * > - * @throws Exception > + * @throws InterruptedException > + * @throws IOException > + * @throws MessagingException > */ > - public void execute() throws Exception { > + public void execute() throws MessagingException, IOException, > InterruptedException { > execute(prepareMessage()); > } > > > > -- Cordialement. Philippe Mouawad.
