CQRSalad.EventSourcing.CodeGeneration.ApplicationServiceTemplateBase.Error C# (CSharp) Method

Error() public method

Raise an error
public Error ( string message ) : void
message string
return void
        public void Error(string message)
        {
            System.CodeDom.Compiler.CompilerError error = new global::System.CodeDom.Compiler.CompilerError();
            error.ErrorText = message;
            this.Errors.Add(error);
        }
        /// <summary>