little buggs 7 lab

This commit is contained in:
Timourka 2023-12-05 11:52:24 +04:00
parent 3749397f5e
commit 21c9ff5017
2 changed files with 4 additions and 2 deletions

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);