Skip to Content.
Sympa Menu

notify-dpml - svn commit: r2790 - development/main/transit/core/handler/src/main/net/dpml/transit

notify-dpml AT lists.ibiblio.org

Subject: DPML Notify

List archive

Chronological Thread  
  • From: mcconnell AT dpml.net
  • To: notify-dpml AT lists.ibiblio.org
  • Subject: svn commit: r2790 - development/main/transit/core/handler/src/main/net/dpml/transit
  • Date: Wed, 08 Jun 2005 09:03:51 -0400

Author: mcconnell AT dpml.net
Date: Wed Jun 8 09:03:50 2005
New Revision: 2790

Modified:

development/main/transit/core/handler/src/main/net/dpml/transit/TransitException.java
Log:
fix

Modified:
development/main/transit/core/handler/src/main/net/dpml/transit/TransitException.java
==============================================================================
---
development/main/transit/core/handler/src/main/net/dpml/transit/TransitException.java
(original)
+++
development/main/transit/core/handler/src/main/net/dpml/transit/TransitException.java
Wed Jun 8 09:03:50 2005
@@ -47,7 +47,11 @@
*/
public TransitException( final String message, final Throwable cause )
{
- super( message, cause );
+ super( message );
+ if( null != cause )
+ {
+ initCause( cause );
+ }
}
}




  • svn commit: r2790 - development/main/transit/core/handler/src/main/net/dpml/transit, mcconnell, 06/08/2005

Archive powered by MHonArc 2.6.24.

Top of Page