src/share/classes/java/util/ArrayList.java

Print this page

        

@@ -119,11 +119,11 @@
 
     /**
      * Constructs an empty list with the specified initial capacity.
      *
      * @param   initialCapacity   the initial capacity of the list
-     * @exception IllegalArgumentException if the specified initial capacity
+     * @throws IllegalArgumentException if the specified initial capacity
      *            is negative
      */
     public ArrayList(int initialCapacity) {
         super();
         if (initialCapacity < 0)