Author: tv
Date: Tue Mar 24 09:45:08 2009
New Revision: 757695

URL: http://svn.apache.org/viewvc?rev=757695&view=rev
Log:
Made TurbineException extend JDK-1.4-Exception instead of commons-lang 
NestableException. This is because NestableException is now gone from 
commons-lang

Modified:
    turbine/core/trunk/src/java/org/apache/turbine/util/TurbineException.java
    turbine/core/trunk/xdocs/changes.xml

Modified: 
turbine/core/trunk/src/java/org/apache/turbine/util/TurbineException.java
URL: 
http://svn.apache.org/viewvc/turbine/core/trunk/src/java/org/apache/turbine/util/TurbineException.java?rev=757695&r1=757694&r2=757695&view=diff
==============================================================================
--- turbine/core/trunk/src/java/org/apache/turbine/util/TurbineException.java 
(original)
+++ turbine/core/trunk/src/java/org/apache/turbine/util/TurbineException.java 
Tue Mar 24 09:45:08 2009
@@ -21,8 +21,6 @@
  */
 
 
-import org.apache.commons.lang.exception.NestableException;
-
 /**
  * The base class of all exceptions thrown by Turbine.
  *
@@ -86,7 +84,7 @@
  * @author <a href="mailto:[email protected]";>Daniel Rall</a>
  * @author <a href="mailto:[email protected]";>Quinton McCombs</a>
  */
-public class TurbineException extends NestableException
+public class TurbineException extends Exception
 {
     /**
      * Constructs a new <code>TurbineException</code> without specified
@@ -94,6 +92,7 @@
      */
     public TurbineException()
     {
+        super();
     }
 
     /**

Modified: turbine/core/trunk/xdocs/changes.xml
URL: 
http://svn.apache.org/viewvc/turbine/core/trunk/xdocs/changes.xml?rev=757695&r1=757694&r2=757695&view=diff
==============================================================================
--- turbine/core/trunk/xdocs/changes.xml (original)
+++ turbine/core/trunk/xdocs/changes.xml Tue Mar 24 09:45:08 2009
@@ -26,6 +26,10 @@
   <body>
     <release version="4.0-dev" date="in Subversion">
       <action type="update" dev="tv">
+        Made TurbineException extend JDK-1.4-Exception instead of commons-lang
+        NestableException.
+      </action>
+      <action type="update" dev="tv">
         Moved the initialization of the pipeline so that all services are
         initialized first and can be used in the pipeline.
       </action>


Reply via email to