Versionr.LocalDB.RemoveStageOperation C# (CSharp) Method

RemoveStageOperation() private method

private RemoveStageOperation ( LocalState ss ) : void
ss LocalState
return void
        internal void RemoveStageOperation(LocalState.StageOperation ss)
        {
            lock (this)
            {
                BeginTransaction();
                try
                {
                    Delete(ss);
                    Commit();
                }
                catch (Exception e)
                {
                    Rollback();
                    throw new Exception("Unable to remove stage operation!", e);
                }
            }
        }