Правка

This commit is contained in:
artur-kalimullin 2024-05-25 00:18:24 +04:00
parent 58dc4abc49
commit a053dafaea

View File

@ -147,7 +147,7 @@ public class StorageCollection<T>
{
if (!File.Exists(filename))
{
throw new FileNotFoundException("Файл не существует");
throw new FileNotFoundException($"{filename} не существует");
}
using (StreamReader fs = File.OpenText(filename))
@ -155,11 +155,11 @@ public class StorageCollection<T>
string str = fs.ReadLine();
if (str == null || str.Length == 0)
{
throw new ArgumentException("В файле нет данных");
throw new FileFormatException("Файл не подходит");
}
if (!str.StartsWith(_collectionKey))
{
throw new InvalidDataException("В файле неверные данные");
throw new IOException("В файле неверные данные");
}
_storages.Clear();
string strs = "";