using System; namespace Website { public static class ExceptionPolicy { internal static IExceptionPolicyHandler Handler { get; set; } public static void General(Exception ex) { Handler.General(ex); } public static void Unhandled(Exception ex) { Handler.Unhandled(ex); } } }