Author: bayard
Date: Thu Feb  3 18:42:03 2005
New Revision: 151300

URL: http://svn.apache.org/viewcvs?view=rev&rev=151300
Log:
missing @return, as per checkstyle

Modified:
    
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/exception/NestableException.java
    
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/exception/NestableRuntimeException.java

Modified: 
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/exception/NestableException.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/exception/NestableException.java?view=diff&r1=151299&r2=151300
==============================================================================
--- 
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/exception/NestableException.java
 (original)
+++ 
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/exception/NestableException.java
 Thu Feb  3 18:42:03 2005
@@ -84,7 +84,7 @@
  * @author <a href="mailto:[EMAIL PROTECTED]">Kasper Nielsen</a>
  * @author <a href="mailto:[EMAIL PROTECTED]">Steven Caswell</a>
  * @since 1.0
- * @version $Id: NestableException.java,v 1.12 2004/08/04 18:41:09 ggregory 
Exp $
+ * @version $Id$
  */
 public class NestableException extends Exception implements Nestable {
     
@@ -151,6 +151,8 @@
      * Returns the detail message string of this throwable. If it was
      * created with a null message, returns the following:
      * (cause==null ? null : cause.toString()).
+     *
+     * @return String message string of the throwable
      */
     public String getMessage() {
         if (super.getMessage() != null) {

Modified: 
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/exception/NestableRuntimeException.java
URL: 
http://svn.apache.org/viewcvs/jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/exception/NestableRuntimeException.java?view=diff&r1=151299&r2=151300
==============================================================================
--- 
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/exception/NestableRuntimeException.java
 (original)
+++ 
jakarta/commons/proper/lang/trunk/src/java/org/apache/commons/lang/exception/NestableRuntimeException.java
 Thu Feb  3 18:42:03 2005
@@ -28,7 +28,7 @@
  * @author <a href="mailto:[EMAIL PROTECTED]">Kasper Nielsen</a>
  * @author <a href="mailto:[EMAIL PROTECTED]">Steven Caswell</a>
  * @since 1.0
- * @version $Id: NestableRuntimeException.java,v 1.10 2004/02/18 22:54:04 
ggregory Exp $
+ * @version $Id$
  */
 public class NestableRuntimeException extends RuntimeException implements 
Nestable {
     
@@ -95,6 +95,8 @@
      * Returns the detail message string of this throwable. If it was
      * created with a null message, returns the following:
      * (cause==null ? null : cause.toString()).
+     *
+     * @return String message string of the throwable
      */
     public String getMessage() {
         if (super.getMessage() != null) {



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to