System.Web.Compilation.AspParser.OnError C# (CSharp) Method

OnError() private method

private OnError ( string msg ) : void
msg string
return void
		void OnError (string msg)
		{
			ParseErrorHandler eh = events [errorEvent] as ParseErrorHandler;
			if (eh != null)
				eh (this, msg);
		}