Skip to content

Commit

Permalink
more xml error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurHeitmann committed Nov 11, 2024
1 parent ed365e7 commit 4a4c25d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/stateManagement/openFiles/types/BxmFileData.dart
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class BxmFileData extends TextFileData {
await File(xmlPath).writeAsString(text.value);
try {
await convertXmlToBxmFile(xmlPath, path);
} on XmlParserException catch (e) {
} on XmlException catch (e) {
// try get useful error message
try {
parseXmlWL(text.value);
Expand Down

0 comments on commit 4a4c25d

Please sign in to comment.