Habanero.Faces.Win.EditableGridWin.CheckRowEvent C# (CSharp) Method

CheckRowEvent() private method

private CheckRowEvent ( System.Windows.Forms.DataGridViewRowCancelEventArgs e ) : void
e System.Windows.Forms.DataGridViewRowCancelEventArgs
return void
        private void CheckRowEvent(DataGridViewRowCancelEventArgs e)
        {
            if (e.Row == null)
            {
                throw new HabaneroApplicationException("The row cannot be deleted since the row event has a null row");
            }
        }