You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by oh...@apache.org on 2013/06/27 21:46:12 UTC

svn commit: r1497526 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ConfigurationRuntimeException.java

Author: oheger
Date: Thu Jun 27 19:46:12 2013
New Revision: 1497526

URL: http://svn.apache.org/r1497526
Log:
ConfigurationRuntimeException now directly extends RuntimeException.

NestableRuntimeException of Commons Lang is no longer supported.

Modified:
    commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ConfigurationRuntimeException.java

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ConfigurationRuntimeException.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ConfigurationRuntimeException.java?rev=1497526&r1=1497525&r2=1497526&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ConfigurationRuntimeException.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration/ConfigurationRuntimeException.java Thu Jun 27 19:46:12 2013
@@ -17,7 +17,6 @@
 
 package org.apache.commons.configuration;
 
-import org.apache.commons.lang.exception.NestableRuntimeException;
 
 /**
  * A configuration related runtime exception.
@@ -27,7 +26,7 @@ import org.apache.commons.lang.exception
  * @author Emmanuel Bourg
  * @version $Id$
  */
-public class ConfigurationRuntimeException extends NestableRuntimeException
+public class ConfigurationRuntimeException extends RuntimeException
 {
     /**
      * The serial version ID.