From 15c53120bcebdd1e52c6cf72d195632153cebfd3 Mon Sep 17 00:00:00 2001 From: clay_shooter Date: Mon, 13 Feb 2006 04:56:27 +0000 Subject: [PATCH] added logging statement so exception does scare people --- samples/com/jacob/samples/test/test.java | 1 + 1 file changed, 1 insertion(+) diff --git a/samples/com/jacob/samples/test/test.java b/samples/com/jacob/samples/test/test.java index 59c5d65..88e3155 100644 --- a/samples/com/jacob/samples/test/test.java +++ b/samples/com/jacob/samples/test/test.java @@ -266,6 +266,7 @@ class test printArray(bback); try { + System.out.println("Should see a com exception right after this line..."); // this should throw ComException bba2.fromCharArray(new char[] {'a'}); } catch (Exception e) {