using System; namespace Website { public interface IExceptionPolicyHandler { void General(Exception ex); void Unhandled(Exception ex); } }