Switched to YAML config format.
[instantlauncher.git] / src / main / java / eu / svjatoslav / instantlauncher / Main.java
index e743390..08cc3a6 100755 (executable)
@@ -2,15 +2,12 @@ package eu.svjatoslav.instantlauncher;
 
 import eu.svjatoslav.commons.gui.dialog.ExceptionDialog;
 
-class Main {
+import java.io.IOException;
 
-    public static void main(final String[] args) {
+class Main {
 
-        try {
-            new InstantLauncher().run();
-        } catch (final Exception e) {
-            new ExceptionDialog(e);
-        }
+    public static void main(final String[] args) throws IOException {
+       new InstantLauncher().run();
     }
 
 }