Author: doogie
Date: Fri Oct 31 15:15:15 2008
New Revision: 709584
URL:
http://svn.apache.org/viewvc?rev=709584&view=revLog:
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();