/[classpath]/classpath/java/lang/ArrayIndexOutOfBoundsException.java
ViewVC logotype

Diff of /classpath/java/lang/ArrayIndexOutOfBoundsException.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.9 by mark, Tue Jan 22 22:26:59 2002 UTC revision 1.10 by ericb, Sun Feb 24 04:25:16 2002 UTC
# Line 1  Line 1 
1  /* ArrayIndexOutOfBoundsException.java -- exception thrown when accessing  /* ArrayIndexOutOfBoundsException.java -- exception thrown when accessing
2     an illegal index.     an illegal index.
3     Copyright (C) 1998, 1999, 2001 Free Software Foundation, Inc.     Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc.
4    
5  This file is part of GNU Classpath.  This file is part of GNU Classpath.
6    
# Line 8  GNU Classpath is free software; you can Line 8  GNU Classpath is free software; you can
8  it under the terms of the GNU General Public License as published by  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation; either version 2, or (at your option)  the Free Software Foundation; either version 2, or (at your option)
10  any later version.  any later version.
11    
12  GNU Classpath is distributed in the hope that it will be useful, but  GNU Classpath is distributed in the hope that it will be useful, but
13  WITHOUT ANY WARRANTY; without even the implied warranty of  WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Line 39  exception statement from your version. * Line 39  exception statement from your version. *
39    
40  package java.lang;  package java.lang;
41    
 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3  
  * "The Java Language Specification", ISBN 0-201-63451-1  
  * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.  
  * Status:  Believed complete and correct.  
  */  
   
   
42  /**  /**
43   * Exceptions may be thrown by one part of a Java program and caught   * Thrown when attempting to access a position outside the valid range of
44   * by another in order to deal with exceptional conditions, in this case   * an array. For example:<br>
45   * when trying to access an illegal index.  This exception is thrown when   * <pre>
46   * accessing an index which is either negative or greater than the size of   * int[] i = { 1 };
47   * the array minus one.   * i[1] = 2;
48   *   * </pre>
  * @since JDK 1.0  
49   *   *
50   * @author Brian Jones   * @author Brian Jones
51   * @author Warren Levy <warrenl@cygnus.com>   * @author Warren Levy <warrenl@cygnus.com>
52   * @date September 18, 1998.   * @status updated to 1.4
53   */   */
54  public class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException  public class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException
55  {  {
56    static final long serialVersionUID = -5116101128118950844L;    /**
57       * Compatible with JDK 1.0+.
58       */
59      private static final long serialVersionUID = -5116101128118950844L;
60    
61    /**    /**
62     * Create an exception without a message.     * Create an exception without a message.
63     */     */
64    public ArrayIndexOutOfBoundsException() {    public ArrayIndexOutOfBoundsException()
65      super();    {
66    }    }
67    
68    /**    /**
69     * Create an exception with a message.     * Create an exception with a message.
70       *
71       * @param s the message
72     */     */
73    public ArrayIndexOutOfBoundsException(String s) {    public ArrayIndexOutOfBoundsException(String s)
74      {
75      super(s);      super(s);
76    }    }
77    
78    /**    /**
79     * Create an exception indicating the illegal index.     * Create an exception indicating the illegal index.
80       *
81       * @param index the invalid index
82     */     */
83    public ArrayIndexOutOfBoundsException(int index) {    public ArrayIndexOutOfBoundsException(int index)
84      {
85      super("Array index out of range: " + index);      super("Array index out of range: " + index);
86    }    }
   
87  }  }

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26