You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ja...@apache.org on 2005/11/21 12:25:52 UTC

svn commit: r345894 - /webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/DynamicCheckFaultTest/Calculator.cpp

Author: jamejose
Date: Mon Nov 21 03:25:15 2005
New Revision: 345894

URL: http://svn.apache.org/viewcvs?rev=345894&view=rev
Log:
Added a 'throw' statement 

Modified:
    webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/DynamicCheckFaultTest/Calculator.cpp

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/DynamicCheckFaultTest/Calculator.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/DynamicCheckFaultTest/Calculator.cpp?rev=345894&r1=345893&r2=345894&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/DynamicCheckFaultTest/Calculator.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/dynamic/DynamicCheckFaultTest/Calculator.cpp Mon Nov 21 03:25:15 2005
@@ -89,6 +89,7 @@
 		}catch(...){
 			cout << "Unspecified exception has occured" << endl;
 		}
+		throw;
 		
 	}
 }
@@ -134,7 +135,8 @@
 	}
 	catch(AxisException& e)
 	{
-	   cout << "Exception : " << e.what()<< endl;
+	     /* We already printed this error message */
+	     //cout << "Exception : " << e.what()<< endl;
 		
 	}
 	catch(exception& e)