You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by do...@apache.org on 2008/10/31 23:15:16 UTC

svn commit: r709584 - /ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java

Author: doogie
Date: Fri Oct 31 15:15:15 2008
New Revision: 709584

URL: http://svn.apache.org/viewvc?rev=709584&view=rev
Log:
Few small javadoc changes; no warnings!

Modified:
    ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java

Modified: ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java?rev=709584&r1=709583&r2=709584&view=diff
==============================================================================
--- ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java (original)
+++ ofbiz/trunk/framework/start/src/org/ofbiz/base/start/StartupException.java Fri Oct 31 15:15:15 2008
@@ -47,6 +47,7 @@
     /**
      * Constructs an <code>StartupException</code> with the specified detail message and nested Exception.
      * @param msg the detail message.
+     * @param nested the chained exception.
      */
     public StartupException(String msg, Throwable nested) {
         super(msg);
@@ -55,7 +56,7 @@
 
     /**
      * Constructs an <code>StartupException</code> with the specified detail message and nested Exception.
-     * @param msg the detail message.
+     * @param nested the chained exception.
      */
     public StartupException(Throwable nested) {
         super();