Shovel.Vm.Vm.IncrementCellsHerald C# (CSharp) Method

IncrementCellsHerald() static private method

static private IncrementCellsHerald ( int cells ) : void
cells int
return void
        void IncrementCellsHerald(int cells)
        {
            if (this.cellsQuota != null && cells > this.cellsQuota.Value) {
                throw new ShovelCellQuotaExceededException ();
            }
        }
Vm