You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by cz...@apache.org on 2006/07/30 20:46:52 UTC

svn commit: r426913 - /cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/util/location/LocatedException.java

Author: cziegeler
Date: Sun Jul 30 11:46:51 2006
New Revision: 426913

URL: http://svn.apache.org/viewvc?rev=426913&view=rev
Log:
We can directly inherit from Exception in JDK 1.4

Modified:
    cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/util/location/LocatedException.java

Modified: cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/util/location/LocatedException.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/util/location/LocatedException.java?rev=426913&r1=426912&r2=426913&view=diff
==============================================================================
--- cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/util/location/LocatedException.java (original)
+++ cocoon/trunk/core/cocoon-core/src/main/java/org/apache/cocoon/util/location/LocatedException.java Sun Jul 30 11:46:51 2006
@@ -20,7 +20,6 @@
 import java.util.List;
 
 import org.apache.commons.lang.exception.ExceptionUtils;
-import org.apache.commons.lang.exception.NestableException;
 
 /**
  * A cascading and located <code>Exception</code>. It is also {@link MultiLocatable} to easily build
@@ -29,7 +28,7 @@
  * @since 2.1.8
  * @version $Id$
  */
-public class LocatedException extends NestableException
+public class LocatedException extends Exception
                               implements LocatableException, MultiLocatable {
 
     private List locations;