protected void WriteToTrace(string message, Exception exception)
 {
     try
     {
         Trace.WriteLine(message);
         Trace.WriteLine(ExceptionUtility.GetExceptionMessagesWithStackTrace(exception));
     }
     catch { }
 }