Batch edit: return error code on exception

#4177
This commit is contained in:
Kurt 2024-01-29 16:10:25 -08:00
parent 5706fb2fb5
commit 48646fd001

View file

@ -379,6 +379,7 @@ public static class BatchEditing
catch (Exception ex) catch (Exception ex)
{ {
Debug.WriteLine(MsgBEModifyFail + " " + ex.Message, cmd.PropertyName, cmd.PropertyValue); Debug.WriteLine(MsgBEModifyFail + " " + ex.Message, cmd.PropertyName, cmd.PropertyValue);
result = ModifyResult.Error;
} }
} }
return result; return result;