using System;
namespace ChadSoft
{
///
/// Provides centralized handling of policies in this application.
///
///
/// This is actually just a stub for right now...
///
public static class ExceptionPolicy
{
///
/// Processes the given exception according to the "Not Critical" policy.
///
/// Exception to process.
public static void NotCritical(Exception ex)
{
// TODO: Handle "Not Critical" exceptions
}
///
/// Processes the given exception according to the "Unhandled" policy.
///
/// Exception to process.
public static void Unhandled(Exception ex)
{
// TODO: Handle unhandled exceptions
}
}
}