Index: trunk/TestCase/SimpleTestCase/ExceptionTest.ab
===================================================================
--- trunk/TestCase/SimpleTestCase/ExceptionTest.ab	(revision 385)
+++ trunk/TestCase/SimpleTestCase/ExceptionTest.ab	(revision 388)
@@ -2,5 +2,5 @@
 
 Sub BadProc()
-	Throw New System.Exception("hello! I am bad proc.")
+	Throw New System.SystemException("hello! I am bad proc.")
 End Sub
 
Index: trunk/TestCase/SimpleTestCase/PathTest.ab
===================================================================
--- trunk/TestCase/SimpleTestCase/PathTest.ab	(revision 385)
+++ trunk/TestCase/SimpleTestCase/PathTest.ab	(revision 388)
@@ -9,5 +9,4 @@
 Sub TestMain()
 	Dim testPath = New String("C:\Dir.Name\file.name.ext")
-
 	UnitTest("Path.GetFileName", Path.GetFileName(testPath) = "file.name.ext")
 
@@ -40,4 +39,8 @@
 
 End Namespace
-
+Try
 PathTest.TestMain()
+Catch e As System.Exception
+	Debug
+	Print e.ToString()
+End Try
