table row/column insert
[fanfix.git] / src / jexer / demos / DemoMainWindow.java
index 7ad14fe145860ce2b9faffc68b02345eeecc485d..54234ba32a3a9ab56cea51e81171a6c3943c53df 100644 (file)
@@ -251,6 +251,20 @@ public class DemoMainWindow extends TWindow {
             }
         );
 
+        /*
+        addButton("Exception", 35, row + 3,
+            new TAction() {
+                public void DO() {
+                    try {
+                        throw new RuntimeException("FUBAR'd!");
+                    } catch (Exception e) {
+                        new jexer.TExceptionDialog(getApplication(), e);
+                    }
+                }
+            }
+        );
+         */
+
         activate(first);
 
         statusBar = newStatusBar(i18n.getString("statusBar"));