X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Finstantlauncher%2FMain.java;h=4711aeec5de8ca217fce675f0db77ba75d5eb90e;hb=155895d0ed0f436753bf862287341830653a9c9f;hp=aede86ba281ae95dc9b7006603b037cf4d30e5c6;hpb=7afbbed8e0cef27a47dd7599aadc5c2c814c7dea;p=instantlauncher.git diff --git a/src/main/java/eu/svjatoslav/instantlauncher/Main.java b/src/main/java/eu/svjatoslav/instantlauncher/Main.java index aede86b..4711aee 100755 --- a/src/main/java/eu/svjatoslav/instantlauncher/Main.java +++ b/src/main/java/eu/svjatoslav/instantlauncher/Main.java @@ -1,17 +1,19 @@ -package eu.svjatoslav.instantlauncher; +/* + * Instantlauncher. Copyright ©2012-2019, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of version 3 of the GNU Lesser General Public License + * or later as published by the Free Software Foundation. + */ -import eu.svjatoslav.commons.gui.dialog.ExceptionDialog; +package eu.svjatoslav.instantlauncher; -public class Main { +import java.io.IOException; - public static void main(final String[] args) { +class Main { - try { - final InstantLauncher instantLauncher = new InstantLauncher(); - instantLauncher.run(); - } catch (final Exception e) { - new ExceptionDialog(e); - } + public static void main(final String[] args) throws IOException { + new InstantLauncher().run(); } }