public static BirthdayMessageLog GetBirthdayMessageLog(string birthdayMessageDay)
 {            
     try
     {
         BirthdayMessageLogDAO birthdayMessageLogDAO = new BirthdayMessageLogDAO();
         return birthdayMessageLogDAO.GetBirthdayMessageLog(birthdayMessageDay);                
     }
     catch (ApplicationException)
     {
         throw;
     }
     catch (Exception ex)
     {
         // log this exception
         log4net.Util.LogLog.Error(ex.Message, ex);
         // wrap it and rethrow
         throw new ApplicationException(SR.BusinessGetBirthdayMessageLogException, ex);
     }
 }