exception back traces for i386
[cacao.git] / tests / stack / exception.java
index bc65e869ff038adc60c59e0d209d8ec8372e966e..7b126ebd4ad25230e8f3d95144e8080331d78862 100644 (file)
@@ -94,6 +94,13 @@ public class exception {
                        
                }
 
+               try {
+                       throw new ClassCastException();
+               } catch (Exception e) {
+                       System.out.println(e.getMessage());
+                       e.printStackTrace();
+               }
+
                throw new ClassCastException();
        }
 }