private void row_ValidationError(object sender, RowValidationErrorEventArgs e)
 {
     e.CancelEdit = false;
     if (e.Exception != null)
     {
         if (e.Exception is Xceed.Grid.GridException)
         {
         }
         else
         {
             ExceptionProcess.ProcessWithResume(e.Exception);
         }
     }
 }
 private void row_ValidationError(object sender, RowValidationErrorEventArgs e)
 {
     e.CancelEdit = false;
     if (e.Exception != null)
     {
         if (e.Exception is Xceed.Grid.GridException)
         {
         }
         else
         {
             ExceptionProcess.ProcessWithResume(e.Exception);
         }
     }
 }