Changed license to CC0
[instantlauncher.git] / src / main / java / eu / svjatoslav / instantlauncher / Main.java
index e743390..a849cc7 100755 (executable)
@@ -1,16 +1,15 @@
+/*
+ * Instantlauncher. Author: Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ * This project is released under Creative Commons Zero (CC0) license.
+ */
 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();
     }
 
 }