Fix mail connection test exception message

Closes gh-4780
pull/4686/merge
Jacob Swanson 9 years ago committed by Phillip Webb
parent 5a1ee6ebe8
commit ae565b805a

@ -50,7 +50,7 @@ public class MailSenderValidatorAutoConfiguration {
this.mailSender.testConnection();
}
catch (MessagingException ex) {
throw new IllegalStateException("Mail server is not unavailable", ex);
throw new IllegalStateException("Mail server is not available", ex);
}
}

Loading…
Cancel
Save