You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ha...@apache.org on 2011/10/18 09:24:36 UTC

svn commit: r1185513 - /geronimo/specs/trunk/geronimo-jcdi_1.0_spec/src/main/java/javax/enterprise/util/AnnotationLiteral.java

Author: hanhongfang
Date: Tue Oct 18 07:24:36 2011
New Revision: 1185513

URL: http://svn.apache.org/viewvc?rev=1185513&view=rev
Log:
GERONIMO-6170 jdci-spec AnnotationLiteral hides root Exception

Modified:
    geronimo/specs/trunk/geronimo-jcdi_1.0_spec/src/main/java/javax/enterprise/util/AnnotationLiteral.java

Modified: geronimo/specs/trunk/geronimo-jcdi_1.0_spec/src/main/java/javax/enterprise/util/AnnotationLiteral.java
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-jcdi_1.0_spec/src/main/java/javax/enterprise/util/AnnotationLiteral.java?rev=1185513&r1=1185512&r2=1185513&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-jcdi_1.0_spec/src/main/java/javax/enterprise/util/AnnotationLiteral.java (original)
+++ geronimo/specs/trunk/geronimo-jcdi_1.0_spec/src/main/java/javax/enterprise/util/AnnotationLiteral.java Tue Oct 18 07:24:36 2011
@@ -228,7 +228,7 @@ public abstract class AnnotationLiteral<
         }
         catch (Exception e)
         {
-            throw new RuntimeException("Exception in method call : " + method.getName());
+            throw new RuntimeException("Exception in method call : " + method.getName(), e);
         }
         finally
         {