http://geekswithblogs.net/SanjayU/archive/2009/11/06/error-handling-in-asp.net-mvc-1-1-of-a-3.aspx
in this URL..
Please first two steps can anybody explain me?
The System.Web.Mvc.dll comes with the HandleErrorAttribute class, which contains..wait for it…the HandleError attribute. This information won’t be important until later in this series, but the HandleErrorAttribute class inherits from the FilterAttribute class, and implements the IExceptionFilter interface – the interface requires a method with the following signature.
public virtual void OnException(ExceptionContext filterContext);
Do i need to create Interface?
where Do I need to write OnExceptoin?
thanks