scolebourne 2004/01/15 13:17:33
Modified: lang/src/java/org/apache/commons/lang SystemUtils.java
Log:
Use @throws instead of @exception
Revision Changes Path
1.28 +5 -5
jakarta-commons/lang/src/java/org/apache/commons/lang/SystemUtils.java
Index: SystemUtils.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/SystemUtils.java,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- SystemUtils.java 31 Dec 2003 22:00:31 -0000 1.27
+++ SystemUtils.java 15 Jan 2004 21:17:33 -0000 1.28
@@ -935,7 +935,7 @@
* <p>Gets the Java home directory.</p>
*
* @return a directory
- * @exception SecurityException if a security manager exists and its
+ * @throws SecurityException if a security manager exists and its
* <code>checkPropertyAccess</code> method doesn't allow
* access to the specified system property.
* @see System#getProperty(String)
@@ -948,7 +948,7 @@
* <p>Gets the Java IO temporary directory.</p>
*
* @return a directory
- * @exception SecurityException if a security manager exists and its
+ * @throws SecurityException if a security manager exists and its
* <code>checkPropertyAccess</code> method doesn't allow
* access to the specified system property.
* @see System#getProperty(String)
@@ -961,7 +961,7 @@
* <p>Gets the user directory.</p>
*
* @return a directory
- * @exception SecurityException if a security manager exists and its
+ * @throws SecurityException if a security manager exists and its
* <code>checkPropertyAccess</code> method doesn't allow
* access to the specified system property.
* @see System#getProperty(String)
@@ -974,7 +974,7 @@
* <p>Gets the user home directory.</p>
*
* @return a directory
- * @exception SecurityException if a security manager exists and its
+ * @throws SecurityException if a security manager exists and its
* <code>checkPropertyAccess</code> method doesn't allow
* access to the specified system property.
* @see System#getProperty(String)
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]