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 2011/11/30 22:13:51 UTC

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

Author: oheger
Date: Wed Nov 30 21:13:50 2011
New Revision: 1208785

URL: http://svn.apache.org/viewvc?rev=1208785&view=rev
Log:
Java 1.5 compatibility: Javadocs.

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=1208785&r1=1208784&r2=1208785&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 Wed Nov 30 21:13:50 2011
@@ -25,7 +25,7 @@ import org.apache.commons.lang.exception
  * @since 1.0
  *
  * @author Emmanuel Bourg
- * @version $Revision$, $Date$
+ * @version $Id$
  */
 public class ConfigurationRuntimeException extends NestableRuntimeException
 {
@@ -35,7 +35,7 @@ public class ConfigurationRuntimeExcepti
     private static final long serialVersionUID = -7838702245512140996L;
 
     /**
-     * Constructs a new <code>ConfigurationRuntimeException</code> without
+     * Constructs a new {@code ConfigurationRuntimeException} without
      * specified detail message.
      */
     public ConfigurationRuntimeException()
@@ -44,7 +44,7 @@ public class ConfigurationRuntimeExcepti
     }
 
     /**
-     * Constructs a new <code>ConfigurationRuntimeException</code> with
+     * Constructs a new {@code ConfigurationRuntimeException} with
      * specified detail message.
      *
      * @param message  the error message
@@ -55,8 +55,8 @@ public class ConfigurationRuntimeExcepti
     }
 
     /**
-     * Constructs a new <code>ConfigurationRuntimeException</code> with
-     * specified nested <code>Throwable</code>.
+     * Constructs a new {@code ConfigurationRuntimeException} with
+     * specified nested {@code Throwable}.
      *
      * @param cause  the exception or error that caused this exception to be thrown
      */
@@ -66,8 +66,8 @@ public class ConfigurationRuntimeExcepti
     }
 
     /**
-     * Constructs a new <code>ConfigurationRuntimeException</code> with
-     * specified detail message and nested <code>Throwable</code>.
+     * Constructs a new {@code ConfigurationRuntimeException} with
+     * specified detail message and nested {@code Throwable}.
      *
      * @param message  the error message
      * @param cause    the exception or error that caused this exception to be thrown