use of de.herrlock.manga.exceptions.MDException in project Manga by herrlock.
the class Main method startServer.
private static void startServer(final CommandLine commandline) {
logger.traceEntry("Commandline: {}", commandline);
logger.info("Starting Server:");
try {
if (commandline.hasOption("browser")) {
logger.info("(and browser)");
ServerMain.execute(true);
} else {
ServerMain.execute(false);
}
} catch (IOException | MDException | URISyntaxException ex) {
throw new MDRuntimeException(ex);
}
}
Aggregations