This commit is contained in:
Saanechkaa 2023-02-21 12:40:43 +04:00
parent 7604e76b7c
commit e6edc2de62
3 changed files with 7 additions and 1 deletions

View File

@ -165,6 +165,11 @@ namespace RoadTrain
MessageBox.Show($"Ошибка переполнения хранилища: {ex.Message}", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning($"Ошибка переполнения хранилища: {ex.Message}");
}
catch (Exception ex)
{
MessageBox.Show($"Такой объект уже есть на карте", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
_logger.LogWarning($"Ошибка переполнения хранилища: {ex.Message}");
}
}
/// <summary>

View File

@ -17,6 +17,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="GitForWindows" Version="2.39.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />

View File

@ -53,7 +53,7 @@
{
// проверка на уникальность
if (_places.Contains(roadTrain))
return -1;
throw new Exception("Такой объект уже есть на карте");
// проверка позиции
if (position < 0 || position >= _maxCount)