laba7 Кувшинов Тимур ПИбд-21 простая #11

Closed
TImourka wants to merge 6 commits from laba7 into laba6
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 21c9ff5017 - Show all commits

View File

@ -78,11 +78,13 @@ namespace Laba1Loco
else
{
MessageBox.Show("Не удалось добавить объект");
_logger.LogWarning($"добавление поезда неуспешно");
}
}
catch(ApplicationException ex)
{
MessageBox.Show(ex.Message);
_logger.LogWarning($"добавление поезда неуспешно {ex.Message}");
}
}

View File

@ -42,7 +42,7 @@ namespace Laba1Loco
public int Insert(T train)
{
if (_places.Count >= _maxCount)
throw new StorageOverflowException();
throw new StorageOverflowException(_places.Count);
_places.Insert(0, train);
return 0;
}
@ -55,7 +55,7 @@ namespace Laba1Loco
public bool Insert(T train, int position)
{
if (_places.Count >= _maxCount)
throw new StorageOverflowException(position);
throw new StorageOverflowException(_places.Count);
if (position < 0 || position > _places.Count)
throw new TrainNotFoundException(position);