Compare commits

..

No commits in common. "dba133155697a0222e7ec91bc2b791bc9d7b8120" and "69d09b7fc27ad6064b4a72a76628989e665c18ed" have entirely different histories.

2 changed files with 5 additions and 2 deletions

View File

@ -1148,7 +1148,8 @@ namespace VEPROMS.CSLA.Library
} }
catch (Exception ex) catch (Exception ex)
{ {
Database.LogException("ItemExt.DeactivateStateDisplayTabTmp", ex); //if (_MyLog.IsErrorEnabled) _MyLog.Error("ItemExt.DeactivateStateDisplayTabTmp", ex);
throw new DbCslaException("ItemExt.DeactivateStateDisplayTabTmp", ex);
} }
} }
@ -1175,7 +1176,8 @@ namespace VEPROMS.CSLA.Library
} }
catch (Exception ex) catch (Exception ex)
{ {
Database.LogException("ItemExt.AddDisplayTabsState", ex); //if (_MyLog.IsErrorEnabled) _MyLog.Error("ItemExt.AddDisplayTabsState", ex);
throw new DbCslaException("ItemExt.AddDisplayTabsState", ex);
} }
} }
} }

View File

@ -48,6 +48,7 @@ namespace VEPROMS.CSLA.Library
catch (Exception ex) catch (Exception ex)
{ {
Database.LogException("UserSettings_GetData", ex); Database.LogException("UserSettings_GetData", ex);
throw new DbCslaException("UserSettings_GetData", ex);
} }
} }