1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

// unexpected error => dump stack

This commit is contained in:
Reinhard Pointner 2015-10-11 16:56:01 +00:00
parent ab964c1c23
commit 735008eb99

View File

@ -64,6 +64,7 @@ import net.filebot.web.CachedResource;
import net.miginfocom.swing.MigLayout;
import net.sf.ehcache.CacheManager;
import org.kohsuke.args4j.CmdLineException;
import org.w3c.dom.NodeList;
public class Main {
@ -209,10 +210,14 @@ public class Main {
Logger.getLogger(Main.class.getName()).log(Level.WARNING, "Failed to show Getting Started help", e);
}
}
} catch (Exception e) {
// illegal arguments => just print CLI error message and stop
} catch (CmdLineException e) {
// illegal arguments => print CLI error message
System.err.println(e.getMessage());
System.exit(-1);
} catch (Throwable e) {
// unexpected error => dump stack
e.printStackTrace();
System.exit(-1);
}
}