Restore diff exit

This commit is contained in:
Roman Shevchenko
2012-04-19 13:12:08 +02:00
parent 09a852a65b
commit fddbd00277
@@ -60,10 +60,12 @@ public class DiffApplication implements ApplicationStarterEx {
System.err.println(e.getMessage());
System.exit(1);
}
catch (Exception e) {
e.printStackTrace();
System.exit(1);
catch (Throwable t) {
t.printStackTrace();
System.exit(2);
}
System.exit(0);
}
@Override