return;
}
catch ( Exception e )
{
throw new NotificationException( "Error while generating mail contents.", e );
}
// ----------------------------------------------------------------------
// Send the mail
// ----------------------------------------------------------------------
String subject;
try
{
subject = generateSubject( project, build );
}
catch ( Exception e )
{
throw new NotificationException( "Error while generating mail subject.", e );
}
sendMessage( project, notifiers, subject, content, messageContext );
}