PIbd-14_Calimullin_A.R._Lab08_Simple #10

Closed
Bloody_Arthur wants to merge 3 commits from Lab08 into Lab07
Showing only changes of commit a053dafaea - Show all commits

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 = "";