using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Logging
{
///
/// Represents a global exception trapper.
///
public interface IGlobalExceptionTrapper
{
///
/// Occurs when the global exception trapper has detected an unhandled exception.
///
event EventHandler ApplicationCrashed;
}
}