Show notification for error while running station

This commit is contained in:
Nathan McRae 2025-02-22 19:29:10 -08:00
parent 18b3e5d0d9
commit 97c3cc3243

View File

@ -153,9 +153,9 @@ public class Main extends Application {
Result<MainSettings, Exception> result = MainSettings.load();
if (!result.hasSuccess()) {
logger.log(Level.SEVERE, "Unable to load settings");
// TODO: Notification
System.exit(1);
String message = "Unable to load settings";
logger.log(Level.SEVERE, message);
throw new StationRunException(message);
}
MainSettings settings = result.getSuccess().get();
@ -205,17 +205,17 @@ public class Main extends Application {
String newPostId = client.newPost(post);
break;
default:
logger.log(Level.SEVERE, "Message method " + loadedStation.getMessageMethod() + " not supported");
// TODO: Notification
System.exit(1);
String message = "Message method " + loadedStation.getMessageMethod() + " not supported";
logger.log(Level.SEVERE, message);
throw new StationRunException(message);
}
String newMessageText = loadedStation.generateMessage(settings.getMessageGenerationAttempts());
Files.write(nextMessagePath, newMessageText.getBytes(StandardCharsets.UTF_8));
} catch (IOException | StationSettings.MessageGenerationException e) {
logger.log(Level.SEVERE, "Exception while posting message to station " + parsedArgs.getStationName(), e);
// TODO: Notification
System.exit(1);
} catch (Exception e) {
String message = "Exception while posting message to station " + parsedArgs.getStationName();
logger.log(Level.SEVERE, message, e);
throw new StationRunException(message);
}
System.exit(0);