/// <summary>
        /// Process an Exception that is logged or stored.
        /// </summary>
        /// <param name="l">The log message object.</param>
        private void ProcessException(LogMessage l)
        {
            Exception e = (Exception)l[UnitTestLogDecorator.ActualException];

            _writer.AddPendingException(e);
        }