]> nmode's Git Repositories - signal-cli/commitdiff
Fix incorrect error message
authorAsamK <asamk@gmx.de>
Wed, 16 Jul 2025 17:17:21 +0000 (19:17 +0200)
committerAsamK <asamk@gmx.de>
Wed, 16 Jul 2025 17:17:21 +0000 (19:17 +0200)
src/main/java/org/asamk/signal/App.java

index cf731ea9ea372fb36fdc8e5e55f2298bd9c5a7a3..6352aa138ba14fbe5c44f60639544afd9f482fce 100644 (file)
@@ -292,7 +292,7 @@ public class App {
         } catch (IOException e) {
             throw new IOErrorException("Failed to load local accounts file", e);
         } catch (AccountCheckException e) {
-            throw new UnexpectedErrorException("Failed to load local accounts file", e);
+            throw new UnexpectedErrorException("Failed to load account file", e);
         }
     }