Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 94403 invoked from network); 17 Jul 2003 19:50:53 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 17 Jul 2003 19:50:53 -0000 Received: (qmail 29327 invoked by uid 97); 17 Jul 2003 19:53:28 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@nagoya.betaversion.org Received: (qmail 29319 invoked from network); 17 Jul 2003 19:53:28 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 17 Jul 2003 19:53:28 -0000 Received: (qmail 94145 invoked by uid 500); 17 Jul 2003 19:50:50 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 94132 invoked from network); 17 Jul 2003 19:50:50 -0000 Received: from eng.werken.com (HELO codehaus.org) (66.216.68.111) by daedalus.apache.org with SMTP; 17 Jul 2003 19:50:50 -0000 Received: from eng.werken.com (codehaus.org [66.216.68.111]) by codehaus.org (8.11.6/8.11.6) with ESMTP id h6HKFoF05417 for ; Thu, 17 Jul 2003 15:15:50 -0500 Message-ID: <14783644.1058472950672.JavaMail.orion@eng.werken.com> Date: Thu, 17 Jul 2003 15:15:50 -0500 (CDT) From: jira@codehaus.org To: commons-dev@jakarta.apache.org Subject: [jira] Created: (JELLY-61) InvocationTargetExceptions not unwrapped by DynamicBeanTag Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Message: A new issue has been created in JIRA. --------------------------------------------------------------------- View the issue: http://jira.codehaus.org/secure/ViewIssue.jspa?key=JELLY-61 Here is an overview of the issue: --------------------------------------------------------------------- Key: JELLY-61 Summary: InvocationTargetExceptions not unwrapped by DynamicBeanTag Type: Bug Status: Unassigned Priority: Major Time Spent: Unknown Remaining: Unknown Project: jelly Components: tags Assignee: Reporter: Brian Ewins Created: Thu, 17 Jul 2003 3:14 PM Updated: Thu, 17 Jul 2003 3:14 PM Environment: all Description: In org.apache.commons.jelly.impl.DynamicBeanTag.doTag(), there is a typo that is preventing clients seeing the correct exception: catch (InvocationTargetException e) { // methodInvocationError(bean, method, e); Throwable inner = e.getTargetException(); throw new JellyTagException(e); } should read: catch (InvocationTargetException e) { // methodInvocationError(bean, method, e); Throwable inner = e.getTargetException(); throw new JellyTagException(inner); } (typo is on the last line) --------------------------------------------------------------------- JIRA INFORMATION: This message is automatically generated by JIRA. If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org