Nanook.QueenBee.EditorForm.showError C# (CSharp) Method

showError() private method

private showError ( string title, string message ) : void
title string
message string
return void
        private void showError(string title, string message)
        {
            MessageBox.Show(this, message, title, MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
        }
EditorForm