improved error logging and handling

This commit is contained in:
Fabian Freund
2026-01-21 11:07:23 +01:00
parent f648c43441
commit dc4a5a9c85
35 changed files with 242 additions and 115 deletions
@@ -92,7 +92,7 @@ class FeedParser {
tags: tags,
);
default:
throw Exception();
throw Exception('Unknown feed type in readGeneralData: ${_feed.runtimeType}');
}
}
@@ -209,7 +209,7 @@ class FeedParser {
);
}).toList();
default:
throw Exception();
throw Exception('Unknown feed type in readArticles: ${_feed.runtimeType}');
}
}
}