* All files: Updated copyright to reflect Cygnus purchase.
[official-gcc.git] / libjava / java / lang / IndexOutOfBoundsException.java
blob723472bbbb7af659b8e0a6aabd3a8820f5cb3afe
1 /* Copyright (C) 1998, 1999 Red Hat, Inc.
3 This file is part of libgcj.
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7 details. */
9 package java.lang;
11 /**
12 * @author Warren Levy <warrenl@cygnus.com>
13 * @date September 18, 1998.
15 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
16 * "The Java Language Specification", ISBN 0-201-63451-1
17 * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
18 * Status: Believed complete and correct.
21 public class IndexOutOfBoundsException extends RuntimeException
23 public IndexOutOfBoundsException()
25 super();
28 public IndexOutOfBoundsException(String msg)
30 super(msg);