Added license and copyright notice.
[instantlauncher.git] / src / main / java / eu / svjatoslav / instantlauncher / Main.java
index e743390..4711aee 100755 (executable)
@@ -1,16 +1,19 @@
+/*
+ * 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.
+ */
+
 package eu.svjatoslav.instantlauncher;
 
-import eu.svjatoslav.commons.gui.dialog.ExceptionDialog;
+import java.io.IOException;
 
 class Main {
 
-    public static void main(final String[] args) {
-
-        try {
-            new InstantLauncher().run();
-        } catch (final Exception e) {
-            new ExceptionDialog(e);
-        }
+    public static void main(final String[] args) throws IOException {
+        new InstantLauncher().run();
     }
 
 }