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