[jbossws-commits] JBossWS SVN: r3943 - branches/asoldano/integration/spi/src/main/java/org/jboss/wsf/spi/invocation.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Wed Jul 18 17:24:35 EDT 2007


Author: palin
Date: 2007-07-18 17:24:35 -0400 (Wed, 18 Jul 2007)
New Revision: 3943

Modified:
   branches/asoldano/integration/spi/src/main/java/org/jboss/wsf/spi/invocation/BasicInvocationHandler.java
Log:


Modified: branches/asoldano/integration/spi/src/main/java/org/jboss/wsf/spi/invocation/BasicInvocationHandler.java
===================================================================
--- branches/asoldano/integration/spi/src/main/java/org/jboss/wsf/spi/invocation/BasicInvocationHandler.java	2007-07-18 19:30:23 UTC (rev 3942)
+++ branches/asoldano/integration/spi/src/main/java/org/jboss/wsf/spi/invocation/BasicInvocationHandler.java	2007-07-18 21:24:35 UTC (rev 3943)
@@ -92,30 +92,6 @@
    
    protected final void handleInvocationException(Throwable th) throws Exception
    {
-//      if (th instanceof MBeanException)
-//      {
-//         throw ((MBeanException)th).getTargetException();
-//      }
-//
-//      if (th instanceof InvocationTargetException)
-//      {
-//         // Unwrap the throwable raised by the service endpoint implementation
-//         Throwable targetEx = ((InvocationTargetException)th).getTargetException();
-//         handleInvocationException(targetEx);
-//      }
-//      
-//      if (th instanceof Exception)
-//      {
-//         throw (Exception)th;
-//      }
-//      
-//      if (th instanceof Error)
-//      {
-//         throw (Error)th;
-//      }
-//      
-//      throw new UndeclaredThrowableException(th);
-      
       //delegate exception handling to the configured handler
       exceptionHandler.handleInvocationException(th);
    }




More information about the jbossws-commits mailing list