home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 October / Chip_1997-10_cd.bin / tema / sybase / powerj / java.z / ArrayIndexOutOfBoundsException.java < prev    next >
Text File  |  1996-05-03  |  2KB  |  56 lines

  1. /*
  2.  * @(#)ArrayIndexOutOfBoundsException.java    1.11 95/07/30  
  3.  *
  4.  * Copyright (c) 1994 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software
  7.  * and its documentation for NON-COMMERCIAL purposes and without
  8.  * fee is hereby granted provided that this copyright notice
  9.  * appears in all copies. Please refer to the file "copyright.html"
  10.  * for further important copyright and licensing information.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  13.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  14.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  15.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  16.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  17.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  18.  */
  19.  
  20. package java.lang;
  21.  
  22. /**
  23.  * Signals that an invalid array index has been used.
  24.  * @version     1.11, 30 Jul 1995
  25.  */
  26. public
  27. class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException {
  28.     /**
  29.      * Constructs an ArrayIndexOutOfBoundsException with no detail message.
  30.      * A detail message is a String that describes this particular exception.
  31.      */
  32.     public ArrayIndexOutOfBoundsException() {
  33.     super();
  34.     }
  35.  
  36.     /**
  37.      * Constructs a new ArrayIndexOutOfBoundsException class initialized to 
  38.      * the specific index.
  39.      * @param index the index where the error occurred
  40.      */
  41.     public ArrayIndexOutOfBoundsException(int index) {
  42.     super("Array index out of range: " + index);
  43.     }
  44.  
  45.     /**
  46.      * Constructs an ArrayIndexOutOfBoundsException class with the specified detail
  47.      * message.  A detail message is a String that describes this particular 
  48.      * exception.
  49.      * @param s the String containing a detail message
  50.      */
  51.     public ArrayIndexOutOfBoundsException(String s) {
  52.     super(s);
  53.     }
  54.  
  55. }
  56.