Fix incorrect error message

This commit is contained in:
AsamK 2025-07-16 19:17:21 +02:00
parent 3e981d66e9
commit 783201d12e

View file

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