using System;
using System.Web;
using CMS.SettingsProvider;
///
/// Global CMS application events
///
public class CMSApplicationEvents
{
///
/// Fires upon the application start
///
public static CMSHandler Start = new CMSHandler();
///
/// Fires upon the application end
///
public static CMSHandler End = new CMSHandler();
///
/// Fires upon the application error
///
public static CMSHandler Error = new CMSHandler();
}