error things
[jalview.git] / forester / java / src / org / forester / archaeopteryx / Archaeopteryx.java
index 91a8fd9..88c9588 100644 (file)
@@ -128,11 +128,14 @@ public final class Archaeopteryx {
         try {
             MainFrameApplication.createInstance( phylogenies, conf, title, current_dir );
         }
-        catch ( final Exception ex ) {
-            AptxUtil.unexpectedException( ex );
+        catch ( final OutOfMemoryError e ) {
+            AptxUtil.outOfMemoryError( e );
         }
-        catch ( final Error err ) {
-            AptxUtil.unexpectedError( err );
+        catch ( final Exception e ) {
+            AptxUtil.unexpectedException( e );
+        }
+        catch ( final Error e ) {
+            AptxUtil.unexpectedError( e );
         }
     }
 }
\ No newline at end of file