Skip to Content.
Sympa Menu

notify-dpml - svn commit: r2786 - 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: r2786 - development/main/transit/core/handler/src/main/net/dpml/transit
  • Date: Tue, 07 Jun 2005 23:02:31 -0400

Author: mcconnell AT dpml.net
Date: Tue Jun 7 23:02:29 2005
New Revision: 2786

Modified:

development/main/transit/core/handler/src/main/net/dpml/transit/TransitException.java
Log:
fix javadoc and upgrade to jdk 1.4

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
Tue Jun 7 23:02:29 2005
@@ -29,13 +29,8 @@
*/
public class TransitException extends ProtocolException
{
- /**
- * The exception causing this exception.
- */
- private final Throwable m_cause;
-
/**
- * Construct a new <code>RepositoryException</code> instance.
+ * Construct a new <code>TransitException</code> instance.
*
* @param message The detail message for this exception.
*/
@@ -45,24 +40,14 @@
}

/**
- * Construct a new <code>RepositoryException</code> instance.
+ * Construct a new <code>TransitException</code> instance.
*
* @param message The detail message for this exception.
* @param cause the root cause of the exception
*/
public TransitException( final String message, final Throwable cause )
{
- super( message );
- m_cause = cause;
- }
-
- /**
- * Returns the exception that was the cause of this exception.
- * @return the causal exception
- */
- public Throwable getCause()
- {
- return m_cause;
+ super( message, cause );
}
}




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

Archive powered by MHonArc 2.6.24.

Top of Page