AspectSharp.Lang.Steps.Context.RaiseErrorEvent C# (CSharp) Method

RaiseErrorEvent() public method

public RaiseErrorEvent ( LexicalInfo info, String message ) : void
info AspectSharp.Lang.AST.LexicalInfo
message String
return void
		public void RaiseErrorEvent( LexicalInfo info, String message )
		{
			SetHasError();

			ErrorDelegate errorDelegate = (ErrorDelegate) _events[ErrorEvent];

			if (errorDelegate != null)
			{
				errorDelegate(info, message);
			}
		}
	}