Compare commits

...

2 Commits

View File

@ -147,11 +147,11 @@ namespace Bulldozer.Generics
var strs = str.Split(new char[] { '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries); var strs = str.Split(new char[] { '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries);
if (strs == null || strs.Length == 0) if (strs == null || strs.Length == 0)
{ {
return false; throw new IOException("Нет данных для загрузки");
} }
if (!strs[0].StartsWith("BulldozerStorage")) if (!strs[0].StartsWith("BulldozerStorage"))
{ {
return false; throw new IOException("Неверный формат данных");
} }
_bulldozerStorages.Clear(); _bulldozerStorages.Clear();
do do
@ -172,7 +172,7 @@ namespace Bulldozer.Generics
{ {
if ((collection + bulldozer) == -1) if ((collection + bulldozer) == -1)
{ {
return false; throw new IOException("Ошибка добавления в коллекцию");
} }
} }
} }
@ -185,4 +185,3 @@ namespace Bulldozer.Generics
} }
} }
} }