You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@onami.apache.org by si...@apache.org on 2013/01/20 12:46:40 UTC

svn commit: r1435828 - /incubator/onami/trunk/test/src/main/java/org/apache/onami/test/reflection/HandleException.java

Author: simonetripodi
Date: Sun Jan 20 11:46:40 2013
New Revision: 1435828

URL: http://svn.apache.org/viewvc?rev=1435828&view=rev
Log:
fixed "Missing a Javadoc comment." checkstyle rule

Modified:
    incubator/onami/trunk/test/src/main/java/org/apache/onami/test/reflection/HandleException.java

Modified: incubator/onami/trunk/test/src/main/java/org/apache/onami/test/reflection/HandleException.java
URL: http://svn.apache.org/viewvc/incubator/onami/trunk/test/src/main/java/org/apache/onami/test/reflection/HandleException.java?rev=1435828&r1=1435827&r2=1435828&view=diff
==============================================================================
--- incubator/onami/trunk/test/src/main/java/org/apache/onami/test/reflection/HandleException.java (original)
+++ incubator/onami/trunk/test/src/main/java/org/apache/onami/test/reflection/HandleException.java Sun Jan 20 11:46:40 2013
@@ -30,16 +30,34 @@ public final class HandleException
 
     private static final long serialVersionUID = 1L;
 
+    /**
+     * Constructs a new HandleException with the specified detail message and cause.
+     *
+     * @param message  detail message
+     * @param cause the cause
+     */
     public HandleException( String message, Throwable cause )
     {
         super( message, cause );
     }
 
+    /**
+     * Constructs a new HandleException with the specified detail message.
+     *
+     * @param message a format string
+     * @param args arguments referenced by the format specifiers in the format string
+     * @see String#format(String, Object...)
+     */
     public HandleException( String message, Object...args )
     {
         super( format( message, args ) );
     }
 
+    /**
+     * Constructs a new HandleException with the specified cause.
+     *
+     * @param cause the cause
+     */
     public HandleException( Throwable cause )
     {
         super( cause );