for pull request

This commit is contained in:
malimova 2023-12-13 16:10:46 +04:00
parent c53f18d132
commit 76e036db5b
2 changed files with 4 additions and 5 deletions

View File

@ -9,7 +9,6 @@ using System.Threading.Tasks;
using System.Windows.Forms;
using Microsoft.VisualBasic.Logging;
using AirBomber.Exceptions;
//using Serilog;
using System.Xml.Linq;
using System.Linq.Expressions;
using Microsoft.Extensions.Logging;

View File

@ -113,7 +113,7 @@ namespace AirBomber
}
if (data.Length == 0)
{
throw new Exception("Невалидная операция, нет данных для сохранения");
throw new ArgumentException("Невалидная операция, нет данных для сохранения");
}
using StreamWriter sw = new(filename);
@ -129,7 +129,7 @@ namespace AirBomber
{
if (!File.Exists(filename))
{
throw new Exception("Файл не найден");
throw new FileNotFoundException("Файл не найден");
}
using (StreamReader sr = new(filename))
{
@ -137,12 +137,12 @@ namespace AirBomber
if (str == null || str.Length == 0)
{
throw new Exception("Нет данных для загрузки");
throw new ArgumentException("Нет данных для загрузки");
}
if (!str.StartsWith("PlaneStorage"))
{
//если нет такой записи, то это не те данные
throw new Exception("Неверный формат данных");
throw new InvalidDataException("Неверный формат данных");
}
_planeStorages.Clear();