Bugs item #1244907, was opened at 2005-07-26 05:01
Message generated for change (Comment added) made by maartenc
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=116035&aid=1244907&group_id=16035

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
>Status: Closed
>Resolution: Fixed
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
>Assigned to: Maarten Coene (maartenc)
Summary: DocumentException must override getCause()

Initial Comment:
DocumentException does not override getCause() to
return getNestedException(). As a result, when one
wraps DocumentException in say IllegalStateException
and then invokes
IllegalStateException.printStackTrace(), the underlying
cause of the DocumentException is never shown because
getCause() returns null.

Please update the implementation to include:

public Throwable getCause()
{
  return getNestedException();
}

----------------------------------------------------------------------

>Comment By: Maarten Coene (maartenc)
Date: 2006-03-23 22:20

Message:
Logged In: YES 
user_id=178745

Fixed in CVS

thanks!
Maarten

----------------------------------------------------------------------

Comment By: Gili Tzabari (cowwoc)
Date: 2005-07-26 05:02

Message:
Logged In: YES 
user_id=80628

Oops, this issue was reported by me -- I forgot to login.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=116035&aid=1244907&group_id=16035


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
dom4j-dev mailing list
dom4j-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dom4j-dev

Reply via email to